mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-17 23:53:25 +02:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
module.exports = function adminModeDirective($rootScope, SettingsService) {
|
|
return {
|
|
restrict: 'AE',
|
|
link: function() {
|
|
SettingsService.bind($rootScope, {
|
|
target: 'adminMode',
|
|
defaultValue: false
|
|
})
|
|
}
|
|
}
|
|
}
|