Roll includes/hoplite to dc2f24a850d312c77958fa28ddec6f5cb9d2ed22.
[bugdar.git] / static / admin.js
1 angular.module('bugdar.admin.settings', [])
2 .directive('yesno', ['$templateCache', function($templateCache) {
3 return {
4 restrict: 'A',
5 replace: false,
6 template: $templateCache.get('-/admin/settings/yesno.tpl'),
7 scope: {
8 title: '@',
9 description: '@',
10 name: '@',
11 value: '@'
12 }
13 };
14 }]);