Вход Регистрация
Файл: Main Website Files/assets/bower_components/datatables-plugins/sorting/stringMonthYear.js
Строк: 71
<?php

/**
 * This sorting plug-in will sort, in calendar order, data which
 * is in the format "MMM yyyy" or "MMMM yyyy". Inspired by forum discussion:
 * http://datatables.net/forums/discussion/1242/sorting-dates-with-only-month-and-year
 *
 * Please note that this plug-in is **deprecated*. The
 * [datetime](//datatables.net/blog/2014-12-18) plug-in provides enhanced
 * functionality and flexibility.
 *
 *  @name Date (MMM yyyy) or (MMMM yyyy)
 *  @anchor Sort dates in the format `MMM yyyy` or `MMMM yyyy`
 *  @author Phil Hurwitz
 *  @deprecated
 *
 *  @example
 *    $('#example').DataTable( {
 *       columnDefs: [
 *         { type: 'stringMonthYear', targets: 0 }
 *       ]
 *    } );
 */

jQuery.extend(jQuery.fn.dataTableExt.oSort, {
    
"stringMonthYear-pre": function (s) {
        var 
months = ["Jan""Feb""Mar""Apr""May""Jun""Jul""Aug""Sep""Oct""Nov""Dec"];

        var 
dateComponents s.split(" ");
        
dateComponents[0] = dateComponents[0].replace(",""");
        
dateComponents[1] = jQuery.trim(dateComponents[1]);

        var 
year dateComponents[1];

        var 
month 0;
        for (var 
0months.lengthi++) {
            if (
months[i].toLowerCase() == dateComponents[0].toLowerCase().substring(0,3)) {
                
month i;
                break;
            }
        }

        return new 
Date(yearmonth1);
    },

    
"stringMonthYear-asc": function (ab) {
        return ((
b) ? -: ((b) ? 0));
    },

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