Adding darkswarm variant of home page, getting Angular skeleton into place, taking shit off window

This commit is contained in:
Will Marshall
2014-04-18 13:01:36 +10:00
parent c0228e0cc3
commit 6753b96f29
18 changed files with 107 additions and 13 deletions

View File

@@ -0,0 +1,10 @@
angular.module('backstretch', []);
angular.module('backstretch')
.directive('backstretch', function () {
return {
restrict: 'A',
link: function (scope, element, attr) {
element.backstretch(attr.backgroundUrl);
}
}
});