Sha256: 276e6cb494c67f25c695a233b6a4c7d410fe5e1aefd73f337d3e6b6634f5a926
Contents?: true
Size: 1.97 KB
Versions: 2
Compression:
Stored size: 1.97 KB
Contents
I"×(function() { var filter_table_rows; filter_table_rows = function(searched) { return $('.live_table > tbody > tr').show().filter(function() { var text; text = $(this).text(); return !~text.indexOf(searched); }).hide(); }; $(document).on('ready page:load', function() { if (typeof tablesorter !== "undefined") { $('.tablesorter').tablesorter({ widgets: ['zebra'] }); } $('#notice, #alert').click(function() { return $(this).fadeTo('slow', 0.1, function() { $(this).empty; return $(this).slideUp('slow'); }); }); $(document).keyup(function(e) { if (e.keyCode === 27) { return $('#notice, #alert').fadeOut('slow'); } }); $(".ajax_load").each(function() { return $(this).load($(this).data('path')); }); if (typeof datepicker !== "undefined") { $('.datepicker').datepicker({ dateFormat: "yy-mm-dd" }); } filter_table_rows($('#live_search').val()); $('#live_search').keyup(function() { return filter_table_rows($(this).val()); }); $(".auto_submit").change(function() { if (this.form.hasAttribute("data-remote")) { return $(this).submit(); } else { return this.form.submit(); } }); setTimeout((function() { return $('.autofocus').focus(); }), 0); /* NAV BAR */ if ($('#nav ul.right li').length) { $('ul.right').after('<div id="hamburger"></div>'); } $('nav #hamburger').click(function() { return $("nav #nav .right").toggle(); }); window.onresize = function() { if (($(window).width() / parseFloat($("body").css("font-size"))) > 47.938) { return $("nav #nav .right").css('display', 'inline-block'); } else { return $("nav #nav .right").css('display', 'none'); } }; return $('main').click(function() { return $("#nav li div:hover").css('display', 'none'); }); }); }).call(this); :ET
Version data entries
2 entries across 2 versions & 1 rubygems