11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
'use strict';
|
|
|
|
module.exports = function(type) {
|
|
if (type === 'removeListeners') {
|
|
window.removeEventListener('resize', this.setSizeAttributesNameSpace);
|
|
return;
|
|
}
|
|
|
|
window.addEventListener('resize', this.setSizeAttributesNameSpace);
|
|
};
|