Вход Регистрация
Файл: Main Website Files/assets/bower_components/datatables-plugins/sorting/file-size.js
Строк: 43
<?php
/**
 * When dealing with computer file sizes, it is common to append a post fix
 * such as KB, MB or GB to a string in order to easily denote the order of
 * magnitude of the file size. This plug-in allows sorting to take these
 * indicates of size into account. A counterpart type detection plug-in 
 * is also available.
 *
 *  @name File size
 *  @summary Sort abbreviated file sizes correctly (8MB, 4KB etc)
 *  @author _anjibman_
 *
 *  @example
 *    $('#example').dataTable( {
 *       columnDefs: [
 *         { type: 'file-size', targets: 0 }
 *       ]
 *    } );
 */

 
jQuery.extendjQuery.fn.dataTableExt.oSort, {
    
"file-size-pre": function ( ) {
        var 
a.substring(0,a.length 2);

        var 
x_unit = (a.substring(a.length 2a.length) == "MB" ?
            
1000 : (a.substring(a.length 2a.length) == "GB" 1000000 1));

        return 
parseIntx_unit10 );
    },

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

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