runInDebug (func) public
Run a function meant for debugging.
- In a production build, this method is defined as an empty function (NOP). Uses of this method in Ember itself are stripped from the ember.prod.js build.
1 2 3 4 5 6 7 | Ember.runInDebug(() => { Ember.Component.reopen({ didInsertElement() { console.log( "I'm happy" ); } }); }); |
Parameters:
-
func
Function
- The function to be executed.
Please login to continue.