Commit f0ae6a0b by Torkel Ödegaard

fix(build): fixed js issue with optimized build

parent 1e44ee9e
...@@ -40,14 +40,6 @@ export function infoPopover() { ...@@ -40,14 +40,6 @@ export function infoPopover() {
} }
}); });
// inputElem.on('focus.popover', function() {
// drop.open();
// });
//
// inputElem.on('blur.popover', function() {
// close();
// });
scope.$on('$destroy', function() { scope.$on('$destroy', function() {
drop.destroy(); drop.destroy();
}); });
......
...@@ -18,9 +18,8 @@ export class SwitchCtrl { ...@@ -18,9 +18,8 @@ export class SwitchCtrl {
checked: any; checked: any;
show: any; show: any;
constructor($element) { /** @ngInject */
// hack to workaround animation constructor() {
// happening on first show
this.show = true; this.show = true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment