This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($) { | |
| var idx = 0; | |
| $.fn.dotsLoader = function (cmd, options) { | |
| var api = { | |
| toggle: function () { | |
| api[this.data('loader-id') ? 'hide' : 'show'].apply(this, arguments); | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function ($) { | |
| $.fn.stickyHeader = function (options) { | |
| var $window = $(window); | |
| var settings = $.extend({}, $.fn.stickyHeader.defaults, options); | |
| return $(this).each(function () { | |
| var $table = $(this), |
NewerOlder