Files
stf-DeviceFarmer/res/app/components/stf/standalone/standalone-directive.js
2016-01-19 23:08:33 +09:00

11 lines
290 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
}
}
}