Changeset 4b7e2d3 for resources/assets
- Timestamp:
- 10/23/21 04:03:46 (3 years ago)
- Branches:
- develop, master
- Children:
- b39afb5
- Parents:
- c6b84df
- Location:
- resources/assets/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/assets/js/app.min.js
rc6b84df r4b7e2d3 497 497 /***/ (function(module, exports, __webpack_require__) { 498 498 499 __webpack_require__( /*! C:\wamp64\www\themeforest\nago\resources\js\app.js */"./resources/js/app.js");500 module.exports = __webpack_require__( /*! C:\wamp64\www\themeforest\nago\public\assets\sass\app.scss */"./public/assets/sass/app.scss");499 __webpack_require__("./resources/js/app.js"); 500 module.exports = __webpack_require__("./public/assets/sass/app.scss"); 501 501 502 502 -
resources/assets/js/custom.js
rc6b84df r4b7e2d3 108 108 }); 109 109 110 function hasNew(response) { 111 112 for(var i=0; i<response.length; i++) { 113 if(!response[i].isRead) { 114 return true; 115 } 116 } 117 118 return false; 119 } 120 110 121 function notifications() { 111 122 … … 160 171 }); 161 172 } 173 174 $(".dropdown-notifications-unread .nav-unread").hide(); 175 notifications(); 176 setInterval(function() { notifications(); }, 5000); 177 178 $(".dropdown-notifications-wrapper").click(function() { 179 $(".dropdown-notifications-unread .nav-unread").hide(); 180 }); 162 181 163 182 $(document).on('click', '#btn-layout-builder', function () {
Note:
See TracChangeset
for help on using the changeset viewer.