mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
11 lines
291 B
JavaScript
11 lines
291 B
JavaScript
module.exports = function standaloneDirective($rootScope, $location) {
|
|
return {
|
|
restrict: 'AE',
|
|
link: function () {
|
|
//$rootScope.standalone = $window.history.length < 2
|
|
var standalone = $location.search().standalone
|
|
$rootScope.standalone = standalone
|
|
}
|
|
}
|
|
}
|