Browse Source

Fixed a memory leak in Popup module

pull/1896/head
Stoyan Revov 9 years ago
parent
commit
1def81b60b
1 changed files with 3 additions and 0 deletions
  1. 3
      src/definitions/modules/popup.js

3
src/definitions/modules/popup.js

@ -152,6 +152,9 @@ $.fn.popup = function(parameters) {
.off(eventNamespace)
.removeData(moduleNamespace)
;
$window
.off('resize' + eventNamespace, module.event.resize)
;
},
event: {

Loading…
Cancel
Save