1
0
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:
Allan Jardine 2014-04-11 09:15:02 +01:00
parent 0ea30f9ba7
commit 464ce6a32a
2 changed files with 10 additions and 10 deletions

View File

@ -1 +1 @@
6e99739abf4582b8630d972c006d66572db4bff7
b6ad90d88e51ab408a1162c10d7e9ca431c29e77

View File

@ -29,16 +29,16 @@
(function( factory ) {
"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 );
}
else if ( typeof exports === 'object' ) {
// Node/CommonJS
}
else if ( jQuery && !jQuery.fn.dataTable ) {
// Define using browser globals otherwise
// Prevent multiple instantiations if the script is loaded twice
/* Define using browser globals otherwise
* Prevent multiple instantiations if the script is loaded twice
*/
else if ( jQuery && !jQuery.fn.dataTable )
{
factory( jQuery );
}
}
@ -8639,7 +8639,7 @@
} );
}
if ( ! remove && orig ) {
if ( ! remove ) {
// insertBefore acts like appendChild if !arg[1]
orig.insertBefore( table, settings.nTableReinsertBefore );
}