develop
Last change
on this file since bbcbb57 was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago |
added user authentication, create & forgot password methods and blades
|
-
Property mode
set to
100644
|
File size:
838 bytes
|
Rev | Line | |
---|
[7304c7f] | 1 | /*! Foundation styling wrapper for Scroller
|
---|
| 2 | * ©2018 SpryMedia Ltd - datatables.net/license
|
---|
| 3 | */
|
---|
| 4 |
|
---|
| 5 | (function( factory ){
|
---|
| 6 | if ( typeof define === 'function' && define.amd ) {
|
---|
| 7 | // AMD
|
---|
| 8 | define( ['jquery', 'datatables.net-zf', 'datatables.net-scroller'], function ( $ ) {
|
---|
| 9 | return factory( $, window, document );
|
---|
| 10 | } );
|
---|
| 11 | }
|
---|
| 12 | else if ( typeof exports === 'object' ) {
|
---|
| 13 | // CommonJS
|
---|
| 14 | module.exports = function (root, $) {
|
---|
| 15 | if ( ! root ) {
|
---|
| 16 | root = window;
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | if ( ! $ || ! $.fn.dataTable ) {
|
---|
| 20 | $ = require('datatables.net-zf')(root, $).$;
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | if ( ! $.fn.dataTable.Scroller ) {
|
---|
| 24 | require('datatables.net-scroller')(root, $);
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | return factory( $, root, root.document );
|
---|
| 28 | };
|
---|
| 29 | }
|
---|
| 30 | else {
|
---|
| 31 | // Browser
|
---|
| 32 | factory( jQuery, window, document );
|
---|
| 33 | }
|
---|
| 34 | }(function( $, window, document, undefined ) {
|
---|
| 35 |
|
---|
| 36 | return $.fn.dataTable;
|
---|
| 37 |
|
---|
| 38 | })); |
---|
Note:
See
TracBrowser
for help on using the repository browser.