Sha256: 416c3025e995c50f11542535baa804c10439263262986136a22ef9207626051a

Contents?: true

Size: 834 Bytes

Versions: 5

Compression:

Stored size: 834 Bytes

Contents

/*! DataTables styling wrapper for Buttons
 * ©2018 SpryMedia Ltd - datatables.net/license
 */

(function( factory ){
	if ( typeof define === 'function' && define.amd ) {
		// AMD
		define( ['jquery', 'datatables.net-dt', 'datatables.net-buttons'], 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-dt')(root, $).$;
			}

			if ( ! $.fn.dataTable.Buttons ) {
				require('datatables.net-buttons')(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/Buttons/buttons.dataTables.js
jquery-datatables-1.10.19.1 app/assets/javascripts/datatables/extensions/Buttons/buttons.dataTables.js
jquery-datatables-1.10.19 app/assets/javascripts/datatables/extensions/Buttons/buttons.dataTables.js
jquery-datatables-1.10.18 app/assets/javascripts/datatables/extensions/Buttons/buttons.dataTables.js
jquery-datatables-1.10.17 app/assets/javascripts/datatables/extensions/Buttons/buttons.dataTables.js