Bogdan
Member since Feb 19, 2015
- Profile: /members/12539-bogdan.htm
- Comments: 3
Recent Blog Comments By Bogdan
-
Changing Directive Inputs Programmatically Won't Trigger ngOnChanges In AngularJS 2 Beta 9
Posted on Jul 28, 2017 at 1:59 PM
@Jerrad, if you reinit the array ngOnChange fires: parent setTimeout(() => { this.updateSomething(); }, 0); } updateSomething) { this.someArray = [{name: 'somename'}]; // or [] } child ngOnChanges(changes: SimpleChanges) { console.log('CHANGES ', changes); }... read more »
-
Creating A Pre-Bootstrap Loading Screen In AngularJS
Posted on May 15, 2015 at 9:06 AM
@Meetbryce, Yup that works - sorry changed the url to http://satronapps.com/ and the loader is running there... read more »
-
Creating A Pre-Bootstrap Loading Screen In AngularJS
Posted on Feb 19, 2015 at 3:44 PM
@Ben, how about the old fashion way added a pre-loader that gets removed by window.onload - that seems to work as well http://corkywine.com/ang_seed/ui/... read more »