mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-15 16:29:16 +01:00
Dev: Markdown updates
- In a fenced code block, need to encode the HTML elements. However, the HTML was being detected and saved first. Run the fencer first. - Type links updated
This commit is contained in:
parent
0ea30f9ba7
commit
464ce6a32a
@ -1 +1 @@
|
|||||||
6e99739abf4582b8630d972c006d66572db4bff7
|
b6ad90d88e51ab408a1162c10d7e9ca431c29e77
|
||||||
|
16
media/js/jquery.dataTables.js
vendored
16
media/js/jquery.dataTables.js
vendored
@ -29,16 +29,16 @@
|
|||||||
(function( factory ) {
|
(function( factory ) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
if ( typeof define === 'function' && define.amd ) {
|
|
||||||
// Define as an AMD module if possible
|
// Define as an AMD module if possible
|
||||||
|
if ( typeof define === 'function' && define.amd )
|
||||||
|
{
|
||||||
define( 'datatables', ['jquery'], factory );
|
define( 'datatables', ['jquery'], factory );
|
||||||
}
|
}
|
||||||
else if ( typeof exports === 'object' ) {
|
/* Define using browser globals otherwise
|
||||||
// Node/CommonJS
|
* Prevent multiple instantiations if the script is loaded twice
|
||||||
}
|
*/
|
||||||
else if ( jQuery && !jQuery.fn.dataTable ) {
|
else if ( jQuery && !jQuery.fn.dataTable )
|
||||||
// Define using browser globals otherwise
|
{
|
||||||
// Prevent multiple instantiations if the script is loaded twice
|
|
||||||
factory( jQuery );
|
factory( jQuery );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -8639,7 +8639,7 @@
|
|||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! remove && orig ) {
|
if ( ! remove ) {
|
||||||
// insertBefore acts like appendChild if !arg[1]
|
// insertBefore acts like appendChild if !arg[1]
|
||||||
orig.insertBefore( table, settings.nTableReinsertBefore );
|
orig.insertBefore( table, settings.nTableReinsertBefore );
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user