1- /*! Foundation styling wrapper for ColumnControl
2- * © SpryMedia Ltd - datatables.net/license
1+ /*! ColumnControl Foundation styling 2.0.0-beta.1 for DataTables
2+ * Copyright (c) SpryMedia Ltd - datatables.net/license
33 */
44
5+ ( function ( factory ) {
6+ if ( typeof define === 'function' && define . amd ) {
7+ // AMD
8+ define ( [ 'datatables.net-zf' , 'datatables.net-columncontrol' ] , function ( dt ) {
9+ return factory ( window , document , dt ) ;
10+ } ) ;
11+ }
12+ else if ( typeof exports === 'object' ) {
13+ // CommonJS
14+ var cjsRequires = function ( root ) {
15+ if ( ! root . DataTable ) {
16+ require ( 'datatables.net-zf' ) ( root ) ;
17+ }
18+
19+ if ( ! window . DataTable . ColumnControl ) {
20+ require ( 'datatables.net-columncontrol' ) ( root ) ;
21+ }
22+ } ;
23+
24+ if ( typeof window === 'undefined' ) {
25+ module . exports = function ( root ) {
26+ if ( ! root ) {
27+ // CommonJS environments without a window global must pass a
28+ // root. This will give an error otherwise
29+ root = window ;
30+ }
31+
32+ cjsRequires ( root ) ;
33+ return factory ( root , root . document , root . DataTable ) ;
34+ } ;
35+ }
36+ else {
37+ cjsRequires ( window ) ;
38+ module . exports = factory ( window , window . document , window . DataTable ) ;
39+ }
40+ }
41+ else {
42+ // Browser
43+ factory ( window , document , window . DataTable ) ;
44+ }
45+ } ( function ( window , document , DataTable ) {
46+ 'use strict' ;
47+
48+
49+
550DataTable . ColumnControl . content . dropdown . classes . container = [
651 'dtcc-dropdown' ,
752 'menu' ,
@@ -10,3 +55,7 @@ DataTable.ColumnControl.content.dropdown.classes.container = [
1055 'first-sub' ,
1156 'vertical'
1257] ;
58+
59+
60+ return DataTable ;
61+ } ) ) ;
0 commit comments