X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/00af5ad16232b856ef1f3620a4f62f0946c681a7..744ca00ccd1e7fda9d4210b18c1f4a734f3b2261:/apps/workbench/app/assets/javascripts/application.js diff --git a/apps/workbench/app/assets/javascripts/application.js b/apps/workbench/app/assets/javascripts/application.js index 770a904947..d66cb9224f 100644 --- a/apps/workbench/app/assets/javascripts/application.js +++ b/apps/workbench/app/assets/javascripts/application.js @@ -18,6 +18,8 @@ //= require bootstrap/tooltip //= require bootstrap/popover //= require bootstrap/collapse +//= require bootstrap/modal +//= require bootstrap/button //= require bootstrap3-editable/bootstrap-editable //= require_tree . @@ -27,7 +29,6 @@ jQuery(function($){ 'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content') } }); - $('.editable').editable(); $('[data-toggle=tooltip]').tooltip(); $('.expand-collapse-row').on('click', function(event) { @@ -41,6 +42,7 @@ jQuery(function($){ } targets.fadeToggle(200); }); + $(document). on('ajax:send', function(e, xhr) { $('.loading').fadeTo('fast', 1); @@ -83,12 +85,11 @@ jQuery(function($){ parent(). find('>span'). append(new_tag_span). - append(' '); + append('  '); $.ajax($(this).attr('data-remote-href'), {dataType: 'json', type: $(this).attr('data-remote-method'), data: { - 'link[head_kind]': 'arvados#collection', 'link[head_uuid]': tag_head_uuid, 'link[link_class]': 'tag', 'link[name]': new_tag @@ -104,6 +105,12 @@ jQuery(function($){ return false; }); + $(document). + on('ajax:complete ready', function() { + // See http://getbootstrap.com/javascript/#buttons + $('.btn').button(); + }); + HeaderRowFixer = function(selector) { this.duplicateTheadTr = function() { $(selector).each(function() { @@ -128,7 +135,7 @@ jQuery(function($){ }); } } - + var fixer = new HeaderRowFixer('.table-fixed-header-row'); fixer.duplicateTheadTr(); fixer.fixThead(); @@ -139,4 +146,4 @@ jQuery(function($){ fixer.duplicateTheadTr(); fixer.fixThead(); }); -})(jQuery); +});