Sha256: b82cca8f0a2ab8f989f912c33617138a8b48774ecbb57a3cec95bac7696a66c3

Contents?: true

Size: 833 Bytes

Versions: 5

Compression:

Stored size: 833 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-bs4', '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-bs4')(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

5 entries across 5 versions & 1 rubygems

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