UI changes, added utilitiy services, persistance, serialization

This commit is contained in:
Colin McLeod
2015-05-01 01:14:29 -07:00
parent f736a078ec
commit 51ac98d10f
82 changed files with 2709 additions and 2516 deletions

View File

@@ -0,0 +1,14 @@
angular.module('app').directive('slotInternal', ['$rootScope', function ($r) {
return {
restrict: 'A',
scope:{
c: '=slot',
lbl: '=',
opts: '='
},
templateUrl: 'views/slot-internal.html',
link: function(scope) {
scope.$r = $r;
}
};
}]);