UNPKG
lcars-dash
Version:
latest (0.0.1)
0.0.1
LCARS inspired multi-window dashboard
github.com/RefugeSystems/lcars-dash
RefugeSystems/lcars-dash
lcars-dash
/
client
/
scripts
/
controllers
/
navigation.js
10 lines
(9 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
angular.
module
(
"lcars"
).controller(
"navigation"
, function(
$scope
,
$location
, lcSounds) {
$scope
.navigation = function(path) {
//
lcSounds.play(
"chirp"
);
//
lcSounds.play(
"beep"
);
//
lcSounds.play(
"button"
); lcSounds.play(
"open"
);
$location
.path(path); }; });