Sha256: 3aebc47dcb5761ff09bf2f36f38dd2bcc45b92090132531baa676945631e9b3b

Contents?: true

Size: 831 Bytes

Versions: 4

Compression:

Stored size: 831 Bytes

Contents

/*! Bootstrap 4 styling wrapper for Select
 * ©2018 SpryMedia Ltd - datatables.net/license
 */

(function( factory ){
	if ( typeof define === 'function' && define.amd ) {
		// AMD
		define( ['jquery', 'datatables.net-zf', 'datatables.net-select'], function ( $ ) {
			return factory( $, window, document );
		} );
	}
	else if ( typeof exports === 'object' ) {
		// CommonJS
		module.exports = function (root, $) {
			if ( ! root ) {
				root = window;
			}

			if ( ! $ || ! $.fn.dataTable ) {
				$ = require('datatables.net-zf')(root, $).$;
			}

			if ( ! $.fn.dataTable.select ) {
				require('datatables.net-select')(root, $);
			}

			return factory( $, root, root.document );
		};
	}
	else {
		// Browser
		factory( jQuery, window, document );
	}
}(function( $, window, document, undefined ) {

return $.fn.dataTable;

}));

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jquery-datatables-1.10.19.1 app/assets/javascripts/datatables/extensions/Select/select.foundation.js
jquery-datatables-1.10.19 app/assets/javascripts/datatables/extensions/Select/select.foundation.js
jquery-datatables-1.10.18 app/assets/javascripts/datatables/extensions/Select/select.foundation.js
jquery-datatables-1.10.17 app/assets/javascripts/datatables/extensions/Select/select.foundation.js