[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
htdocs
/
kerjasama
/
assets
/
js
/
core
/
demo
/
[
Home
]
File: DemoUILists.js
(function(namespace, $) { "use strict"; var DemoUILists = function() { // Create reference to this instance var o = this; // Initialize app when document is ready $(document).ready(function() { o.initialize(); }); }; var p = DemoUILists.prototype; // ========================================================================= // INIT // ========================================================================= p.initialize = function() { this._initNestableLists(); }; // ========================================================================= // NESTABLE LISTS // ========================================================================= p._initNestableLists = function() { if (!$.isFunction($.fn.nestable)) { return; } $('.nestable-list').nestable(); }; // ========================================================================= namespace.DemoUILists = new DemoUILists; }(this.materialadmin, jQuery)); // pass in (namespace, jQuery):