A simple way of detecting changes in currently active breakpoint, as well as executing breakpoint-specific JavaScript code.
A Pen by Maciej Gurban on CodePen.
A simple way of detecting changes in currently active breakpoint, as well as executing breakpoint-specific JavaScript code.
A Pen by Maciej Gurban on CodePen.
| 0x88B86b3F5E0958427504b2a2caF98D48958F1f9d |
Always at least scan the commit log for warning signs
| const app = angular.module('myApp', []); | |
| angular.module('myApp').component('foobar', { | |
| controller: function() { | |
| this.foo = 100; | |
| }, | |
| template: `This is Angular app!`, | |
| }); |
| //(function(){ | |
| const app = angular.module('myApp', []); | |
| angular.module('myApp').component('foobar', { | |
| controller: function() { | |
| this.foo = 100; | |
| }, | |
| template: `This is Angular app!`, | |
| }); | |
| //})(); |