Changeset 4b7e2d3 for public


Ignore:
Timestamp:
10/23/21 04:03:46 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
b39afb5
Parents:
c6b84df
Message:

bug fixes, edited export, added fileSeeder for DB testing

Location:
public
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • public/assets/js/app.js

    rc6b84df r4b7e2d3  
    898898/***/ (function(module, exports, __webpack_require__) {
    899899
    900 __webpack_require__(/*! C:\wamp64\www\themeforest\nago\resources\js\app.js */"./resources/js/app.js");
    901 module.exports = __webpack_require__(/*! C:\wamp64\www\themeforest\nago\public\assets\sass\app.scss */"./public/assets/sass/app.scss");
     900__webpack_require__("./resources/js/app.js");
     901module.exports = __webpack_require__("./public/assets/sass/app.scss");
    902902
    903903
     
    10151015    });
    10161016
     1017    function hasNew(response) {
     1018
     1019        for(var i=0; i<response.length; i++) {
     1020            if(!response[i].isRead) {
     1021                return true;
     1022            }
     1023        }
     1024
     1025        return false;
     1026    }
     1027
    10171028    function notifications() {
    10181029
     
    10671078        });
    10681079    }
     1080
     1081    $(".dropdown-notifications-unread .nav-unread").hide();
     1082    notifications();
     1083    setInterval(function() { notifications(); }, 5000);
     1084
     1085    $(".dropdown-notifications-wrapper").click(function() {
     1086        $(".dropdown-notifications-unread .nav-unread").hide();
     1087    });
    10691088
    10701089    $(document).on('click', '#btn-layout-builder', function () {
  • public/assets/js/examples/pages/user-list.js

    rc6b84df r4b7e2d3  
    1515                "orderable": false,
    1616                "targets": [0, 2]
    17             }
     17            },
    1818        ],
    19         'order': [1, 'asc']
     19        'order': [1, 'asc'],
     20        buttons: ['copy', 'csv', 'excel', 'pdf', 'print']
    2021    });
    2122
Note: See TracChangeset for help on using the changeset viewer.