Skip to content

Commit

Permalink
updating libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Feb 15, 2022
1 parent 78c5f9a commit d18ac46
Show file tree
Hide file tree
Showing 45 changed files with 9,869 additions and 698 deletions.
7 changes: 6 additions & 1 deletion qiita_pet/static/js/qiita.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,12 @@ var qiita_websocket = new function () {
ws.onerror = on_error;

ws.onmessage = function(evt) {
message = decode(evt.data);
var data = evt.data;
if (data === 'hello'){
message = '';
} else {
message = decode(evt.data);
}
for(var action in message) {
if(action in callbacks) {
callbacks[action](message[action]);
Expand Down
3 changes: 2 additions & 1 deletion qiita_pet/static/js/sampleTemplateVue.js
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,8 @@ Vue.component('sample-template-page', {
var catValues, $tr, $td, rowIdx, collapsedId, $trVal, $div, $btn;
$div = $('<div>').addClass('panel panel-default').appendTo('#sample-info-tab');
$('<div>').addClass('panel-heading').appendTo($div).append('Information summary');
var $table = $('<table>').addClass('table').appendTo($div);
var $mtable = $('<table>').addClass('table').appendTo($div);
var $table = $('<tbody>').appendTo($mtable);
var categories = data['values'];
categories.sort(function(a, b){return a[0].localeCompare(b[0], 'en', {'sensitivity': 'base'});});

Expand Down
3 changes: 1 addition & 2 deletions qiita_pet/static/vendor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ Qiita relies on the following JavaScript libraries:
- [Select2](https://select2.org/).
- [SlickGrid](https://github.com/mleibman/SlickGrid).
- [String.js](https://github.com/jprichardson/string.js).
- [tag-it.js](http://aehlke.github.io/tag-it/).
- [underscore.js](http://underscorejs.org/).
- [tagify](https://github.com/yairEO/tagify).
- [vue.js](https://vuejs.org).
- [ol.js](https://openlayers.org/).
- [cytoscape.js](https://github.com/cytoscape/cytoscape.js).
Expand Down
Binary file modified qiita_pet/static/vendor/css/chosen-sprite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified qiita_pet/static/vendor/css/chosen-sprite@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d18ac46

Please sign in to comment.