diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index 88c09259..64b7b222 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -6635,7 +6635,7 @@ * * @example * // Updating the cached sorting information with user entered values in HTML input elements - * jQuery.fn.dataTableExt.afnSortData['dom-text'] = function  ( oSettings, iColumn ) + * jQuery.fn.dataTableExt.afnSortData['dom-text'] = function ( oSettings, iColumn ) * { * var aData = []; * $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () { @@ -6732,7 +6732,7 @@ * } * * // Check prefixed by currency - * if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' ) { + * if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' ) { * return 'currency'; * } * return null; @@ -7026,10 +7026,10 @@ * // Case-sensitive string sorting, with no pre-formatting method * $.extend( $.fn.dataTableExt.oSort, { * "string-case-asc": function(x,y) { - * return ((x < y) ? -1 : ((x > y) ?  1 : 0)); + * return ((x < y) ? -1 : ((x > y) ? 1 : 0)); * }, * "string-case-desc": function(x,y) { - * return ((x < y) ?  1 : ((x > y) ? -1 : 0)); + * return ((x < y) ? 1 : ((x > y) ? -1 : 0)); * } * } ); * @@ -7040,10 +7040,10 @@ * return x.toLowerCase(); * }, * "string-asc": function(x,y) { - * return ((x < y) ? -1 : ((x > y) ?  1 : 0)); + * return ((x < y) ? -1 : ((x > y) ? 1 : 0)); * }, * "string-desc": function(x,y) { - * return ((x < y) ?  1 : ((x > y) ? -1 : 0)); + * return ((x < y) ? 1 : ((x > y) ? -1 : 0)); * } * } ); */ diff --git a/media/src/model/model.ext.js b/media/src/model/model.ext.js index a0ff0f70..9e306bae 100644 --- a/media/src/model/model.ext.js +++ b/media/src/model/model.ext.js @@ -102,7 +102,7 @@ DataTable.models.ext = { * * @example * // Updating the cached sorting information with user entered values in HTML input elements - * jQuery.fn.dataTableExt.afnSortData['dom-text'] = function  ( oSettings, iColumn ) + * jQuery.fn.dataTableExt.afnSortData['dom-text'] = function ( oSettings, iColumn ) * { * var aData = []; * $( 'td:eq('+iColumn+') input', oSettings.oApi._fnGetTrNodes(oSettings) ).each( function () { @@ -199,7 +199,7 @@ DataTable.models.ext = { * } * * // Check prefixed by currency - * if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' ) { + * if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' ) { * return 'currency'; * } * return null; @@ -493,10 +493,10 @@ DataTable.models.ext = { * // Case-sensitive string sorting, with no pre-formatting method * $.extend( $.fn.dataTableExt.oSort, { * "string-case-asc": function(x,y) { - * return ((x < y) ? -1 : ((x > y) ?  1 : 0)); + * return ((x < y) ? -1 : ((x > y) ? 1 : 0)); * }, * "string-case-desc": function(x,y) { - * return ((x < y) ?  1 : ((x > y) ? -1 : 0)); + * return ((x < y) ? 1 : ((x > y) ? -1 : 0)); * } * } ); * @@ -507,10 +507,10 @@ DataTable.models.ext = { * return x.toLowerCase(); * }, * "string-asc": function(x,y) { - * return ((x < y) ? -1 : ((x > y) ?  1 : 0)); + * return ((x < y) ? -1 : ((x > y) ? 1 : 0)); * }, * "string-desc": function(x,y) { - * return ((x < y) ?  1 : ((x > y) ? -1 : 0)); + * return ((x < y) ? 1 : ((x > y) ? -1 : 0)); * } * } ); */