1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 10:39:25 +02:00

Refactored basic mode to a directive.

This commit is contained in:
Gunther Brunner 2014-05-27 19:03:53 +09:00
parent eb3e7a40cc
commit 6429a681be
6 changed files with 45 additions and 9 deletions

View file

@ -1,10 +1,3 @@
module.exports = function LayoutCtrl(FatalMessageService, BrowserInfo, $rootScope) {
$rootScope.basicMode = false
if (BrowserInfo.small) {
$rootScope.basicMode = true
} else {
$rootScope.basicMode = false
}
module.exports = function LayoutCtrl(FatalMessageService) {
}