Skip to content

Instantly share code, notes, and snippets.

@jonocairns
Created April 30, 2015 21:01
Show Gist options
  • Save jonocairns/26e00d83270741fb8fd3 to your computer and use it in GitHub Desktop.
Save jonocairns/26e00d83270741fb8fd3 to your computer and use it in GitHub Desktop.
'use strict';
module app.common {
export function spinner(): ng.IDirective {
return {
restrict: 'E',
replace: true,
templateUrl: 'views/templates/spinner.html' // this template can contain an spinner SVG
};
}
angular
.module('app.common')
.directive('spinner', spinner);
}
// usage
// <div class="row" ng-show="vm.isLoading">
// <spinner></spinner>
// </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment