Display Loading.. Gif In Angular-blockui Plugin
I have used blockUI PLUGIN from https://github.com/McNull/angular-block-ui Problem i'm facing is that i want to dislay loading gif along with Saving Synids... Message. So how can i
Solution 1:
As per the documentation, you need to change the default value.
// Change the default overlay message
blockUIConfig.message = 'Saving Synids...';
example
angular.module('myApp').config(function(blockUIConfig) {
// Change the default overlay message
blockUIConfig.message = 'Saving Synids...';
// Change the default delay to 100ms before the blocking is visible
blockUIConfig.delay = 100;
});
source: http://angular-block-ui.nullest.com/#!/examples/documentation
Post a Comment for "Display Loading.. Gif In Angular-blockui Plugin"