Skip to content

Instantly share code, notes, and snippets.

@andrebaltieri
Created October 1, 2014 13:01
Show Gist options
  • Save andrebaltieri/80cfe27a9256714d9d8f to your computer and use it in GitHub Desktop.
Save andrebaltieri/80cfe27a9256714d9d8f to your computer and use it in GitHub Desktop.
(function() {
'use strict';
angular
.module('app')
.directive('loading', loading);
loading.$inject = ['$window'];
function loading ($window) {
return {
templateUrl: 'app/directives/loading/loading.html'
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment