Subversion Repositories SmartDukaan

Rev

Rev 31219 | Rev 31225 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31219 Rev 31224
Line 289... Line 289...
289
    $(document).ready(function () {
289
    $(document).ready(function () {
290
 
290
 
291
        $("select.criteria-partnertype").chosen({no_results_text: "Oops, nothing found!"});
291
        $("select.criteria-partnertype").chosen({no_results_text: "Oops, nothing found!"});
292
 
292
 
293
 
293
 
294
        var partnerTypes = $("select.criteria-partnertype").val();
294
        let partnerTypes = $("select.criteria-partnertype").val();
295
        if (typeof partnerTypes != "undefined") {
295
        if (typeof partnerTypes != "undefined") {
296
            $.fn.dataTable.ext.search.push(function (settings, data, dataIndex) {
296
            $.fn.dataTable.ext.search.push(function (settings, data, dataIndex) {
297
                var tablePartnerType = data[2];
297
                var tablePartnerType = data[2];
298
                var lastMonthSale = data[7];
298
                var lastMonthSale = data[7];
299
 
299