Вход Регистрация
Файл: Main Website Files/assets/bower_components/datatables-plugins/sorting/signed-num.js
Строк: 42
<?php
/**
 * Although DataTables' internal numeric sorting works no problem on negative
 * numbers, it does not accept positively signed numbers. This plug-in will
 * sort just such data numerically.
 *
 *  @name Fully signed numbers sorting 
 *  @summary Sort data numerically with a leading `+` symbol (as well as `-`).
 *  @author [Allan Jardine](http://sprymedia.co.uk)
 *
 *  @example
 *    $('#example').dataTable( {
 *       columnDefs: [
 *         { type: 'signed-num', targets: 0 }
 *       ]
 *    } );
 */

jQuery.extendjQuery.fn.dataTableExt.oSort, {
    
"signed-num-pre": function ( ) {
        return (
a=="-" || a==="") ? a.replace('+','')*1;
    },

    
"signed-num-asc": function ( a) {
        return ((
b) ? -: ((b) ? 0));
    },

    
"signed-num-desc": function ( a) {
        return ((
b) ? : ((b) ? -0));
    }
} );
?>
Онлайн: 2
Реклама