Skip to content

A useful collection of some angularjs directives, services, and filters.

Notifications You must be signed in to change notification settings

sedran/angular-fn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-fn

Directives

Block UI

<div fn-block-ui="myBlockId">Content</div>
angular.module('mymodule', ['angular-fn']).controller('MyCtrl', ['fnBlockUi', function (fnBlockUi) {

    // Activate the fn-block-ui directive with 'myBlockId' id
    var unblock = fnBlockUi('myBlockId');
    
    // Do whatever you need when the UI is blocked.
    // ...
    
    // Deactivate (hide) block.
    unblock();
}]);

About

A useful collection of some angularjs directives, services, and filters.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published