Loading image in NG-Client

Hi,

Is it possible to add a loading glyphicon at startup like this in Servoy NG-Client?

      <div ng-if="vm.cargando == true">
                    <div class="form-group">
                        <div class="col-md-12 text-center">
                            <span class="glyphicon glyphicon-cog glyphicon-refresh-animate"></span>
                        </div>
                    </div>
                </div>

Regards,

Did you look at using the plugin svyBlockUi with a spinner?
You can download it through the web package manager.

For Example:

	// "Rotating plane", "Double bounce", "Wave", "Wandering cubes", "Pulse", "Chasing dots", "Three bounce", "Circle", "Cube grid", "Fading circle", "Folding cube"
	plugins.svyBlockUI.spinner = "Three bounce";
	plugins.svyBlockUI.overlayColor = '#000000'
	plugins.svyBlockUI.overlayOpacity = 0.35;
	plugins.svyBlockUI.show();

Thanks Sanneke!!!