1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-02-07 05:54:15 +01:00

Fix: Mixed tabs and spaces

This commit is contained in:
Allan Jardine 2015-07-24 11:45:08 +01:00
parent 534e281b39
commit 11dbd3ca52
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
51d29bc6e2be833c15e189a133982f4e90f57ef2 8bbe3332c9d5b5c51908814c1af6ccca9c597877

View File

@ -33,10 +33,10 @@
// Define as an AMD module if possible // Define as an AMD module if possible
define( 'datatables', ['jquery'], factory ); define( 'datatables', ['jquery'], factory );
} }
else if ( typeof exports === 'object' ) { else if ( typeof exports === 'object' ) {
// Node/CommonJS // Node/CommonJS
module.exports = factory( require( 'jquery' ) ); module.exports = factory( require( 'jquery' ) );
} }
else if ( jQuery && !jQuery.fn.dataTable ) { else if ( jQuery && !jQuery.fn.dataTable ) {
// Define using browser globals otherwise // Define using browser globals otherwise
// Prevent multiple instantiations if the script is loaded twice // Prevent multiple instantiations if the script is loaded twice