Merge branch '2179-demo-feedback'
[arvados.git] / apps / workbench / app / assets / javascripts / application.js
1 // This is a manifest file that'll be compiled into application.js, which will include all the files
2 // listed below.
3 //
4 // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5 // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6 //
7 // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8 // the compiled file.
9 //
10 // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11 // GO AFTER THE REQUIRES BELOW.
12 //
13 //= require jquery
14 //= require jquery_ujs
15 //= require bootstrap
16 //= require bootstrap/dropdown
17 //= require bootstrap/tab
18 //= require bootstrap/tooltip
19 //= require bootstrap/popover
20 //= require bootstrap/collapse
21 //= require bootstrap3-editable/bootstrap-editable
22 //= require_tree .
23
24 jQuery(function($){
25     $.ajaxSetup({
26         headers: {
27             'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')
28         }
29     });
30     $('.editable').editable();
31     $('[data-toggle=tooltip]').tooltip();
32
33     $('.expand-collapse-row').on('click', function(event) {
34         var targets = $('#' + $(this).attr('data-id'));
35         if (targets.css('display') == 'none') {
36             $(this).addClass('icon-minus-sign');
37             $(this).removeClass('icon-plus-sign');
38         } else {
39             $(this).addClass('icon-plus-sign');
40             $(this).removeClass('icon-minus-sign');
41         }
42         targets.fadeToggle(200);
43     });
44     $(document).
45         on('ajax:send', function(e, xhr) {
46             $('.loading').fadeTo('fast', 1);
47         }).
48         on('ajax:complete', function(e, status) {
49             $('.loading').fadeOut('fast', 0);
50         });
51
52     HeaderRowFixer = function(selector) {
53         var tables = $(selector);
54         this.duplicateTheadTr = function() {
55             $('>tbody', tables).each(function(){
56                 $(this).prepend($('thead>tr', this).clone().css('opacity:0'));
57             });
58         }
59         this.fixThead = function() {
60             tables.each(function() {
61                 var widths = [];
62                 $('> tbody > tr:eq(1) > td', this).each( function(i,v){
63                     widths.push($(v).width());
64                 });
65                 for(i=0;i<widths.length;i++) {
66                     $('thead th:eq('+i+')', this).width(widths[i]);
67                 }
68             });
69         }
70     }
71     var fixer = new HeaderRowFixer('.table-fixed-header-row');
72     fixer.fixThead();
73     fixer.duplicateTheadTr();
74     $(window).resize(function(){
75         fixer.fixThead();
76     });
77 })(jQuery);