File: demos/startbootstrap-sb-admin-2/bower_components/datatables-plugins/sorting/anti-the.js

Recommend this page to a friend!
  Classes of Emmanuel Podvin   Blapy   demos/startbootstrap-sb-admin-2/bower_components/datatables-plugins/sorting/anti-the.js   Download  
File: demos/startbootstrap-sb-admin-2/bower_components/datatables-plugins/sorting/anti-the.js
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Blapy
jQuery plugin to load linked pages using AJAX
Author: By
Last change: Update of demos/startbootstrap-sb-admin-2/bower_components/datatables-plugins/sorting/anti-the.js
Date: 2 years ago
Size: 886 bytes
 

Contents

Class file image Download
/** * Often a list of data which has titles in it (books, albums etc) will have * the word "the" at the start of some individual titles, which you don't want * to include in your sorting order. This plug-in will strip the word "the" * from the start of a string and sort on what is left. * * @name Anti-"the" * @summary Sort with the prefixed word `dt-string The` removed, if present * @author [Allan Jardine](http://sprymedia.co.uk) * * @example * $('#example').dataTable( { * columnDefs: [ * { type: 'anti-the', targets: 0 } * ] * } ); */ jQuery.extend( jQuery.fn.dataTableExt.oSort, { "anti-the-pre": function ( a ) { return a.replace(/^the /i, ""); }, "anti-the-asc": function ( a, b ) { return ((a < b) ? -1 : ((a > b) ? 1 : 0)); }, "anti-the-desc": function ( a, b ) { return ((a < b) ? 1 : ((a > b) ? -1 : 0)); } } );