Sha256: 24463a2611dc8a30530e29b61ce5c549d284ebeebabdd80c5f7987dec3cf3745

Contents?: true

Size: 1.87 KB

Versions: 2

Compression:

Stored size: 1.87 KB

Contents

I"r(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).fadeOut();
    });
    $(document).keyup(function(e) {
      if (e.keyCode === 27) {
        return $('#notice, #alert').fadeOut();
      }
    });
    $(".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

Version Path
dfm_web-1.0.7 spec/dummy/tmp/cache/assets/sprockets/v3.0/pT/pTJsZqwarpkrXo6Cf6tZ5IJTF2XBx_Ss5x01Z97q7Vk.cache
dfm_web-1.0.6 spec/dummy/tmp/cache/assets/sprockets/v3.0/pT/pTJsZqwarpkrXo6Cf6tZ5IJTF2XBx_Ss5x01Z97q7Vk.cache