Files
stf-DeviceFarmer/res/app/components/stf/standalone/standalone-directive.js
2014-10-15 18:00:00 +09:00

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
}
}
}