Sha256: 728db360cdffb9757c318d3b5ff0b030541ac1e3d78fbc7b3af2c853e8ae1311

Contents?: true

Size: 1.26 KB

Versions: 28

Compression:

Stored size: 1.26 KB

Contents

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

(function( factory ){
	if ( typeof define === 'function' && define.amd ) {
		// AMD
		define( ['jquery', 'datatables.net-bs4', 'datatables.net-rowreorder'], function ( $ ) {
			return factory( $, window, document );
		} );
	}
	else if ( typeof exports === 'object' ) {
		// CommonJS
		var jq = require('jquery');
		var cjsRequires = function (root, $) {
			if ( ! $.fn.dataTable ) {
				require('datatables.net-bs4')(root, $);
			}

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

		if (typeof window === 'undefined') {
			module.exports = function (root, $) {
				if ( ! root ) {
					// CommonJS environments without a window global must pass a
					// root. This will give an error otherwise
					root = window;
				}

				if ( ! $ ) {
					$ = jq( root );
				}

				cjsRequires( root, $ );
				return factory( $, root, root.document );
			};
		}
		else {
			cjsRequires( window, jq );
			module.exports = factory( jq, window, window.document );
		}
	}
	else {
		// Browser
		factory( jQuery, window, document );
	}
}(function( $, window, document, undefined ) {
'use strict';
var DataTable = $.fn.dataTable;




return DataTable;
}));

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
effective_datatables-4.30.1 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.30.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.29.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.26.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.25.3 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.25.2 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.25.1 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.25.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.24.2 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.24.1 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.24.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.23.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.22.3 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.22.2 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.22.1 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.22.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.21.1 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.21.0 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.20.6 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js
effective_datatables-4.20.5 app/assets/javascripts/dataTables/rowReorder/rowReorder.bootstrap4.js