Files
ionic-framework/js/angular/directive/loader.js
2015-01-15 15:35:12 -06:00

18 lines
287 B
JavaScript

/**
* @ngdoc directive
* @name ionLoader
* @module ionic
* @restrict E
* @description
*/
IonicModule
.directive('ionLoader', function() {
return {
restrict: 'E',
controller: '$ionicLoader',
link: function($scope, $element, $attrs, ctrl) {
ctrl.init();
}
};
});