Changeset 4b7e2d3 for public/assets
- Timestamp:
- 10/23/21 04:03:46 (3 years ago)
- Branches:
- develop, master
- Children:
- b39afb5
- Parents:
- c6b84df
- Location:
- public/assets/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
public/assets/js/app.js
rc6b84df r4b7e2d3 898 898 /***/ (function(module, exports, __webpack_require__) { 899 899 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"); 901 module.exports = __webpack_require__("./public/assets/sass/app.scss"); 902 902 903 903 … … 1015 1015 }); 1016 1016 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 1017 1028 function notifications() { 1018 1029 … … 1067 1078 }); 1068 1079 } 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 }); 1069 1088 1070 1089 $(document).on('click', '#btn-layout-builder', function () { -
public/assets/js/examples/pages/user-list.js
rc6b84df r4b7e2d3 15 15 "orderable": false, 16 16 "targets": [0, 2] 17 } 17 }, 18 18 ], 19 'order': [1, 'asc'] 19 'order': [1, 'asc'], 20 buttons: ['copy', 'csv', 'excel', 'pdf', 'print'] 20 21 }); 21 22
Note:
See TracChangeset
for help on using the changeset viewer.