We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23087a7 commit 4e510b4Copy full SHA for 4e510b4
src/main/webapp/partials/applications.html
@@ -4,6 +4,9 @@
4
5
<material-toolbar id="toolbar" class="toolbar">
6
<div class="material-toolbar-tools">
7
+ <span class="fa fa-arrow-left toolbar-icon"
8
+ ng-click="goHome()">
9
+ </span>
10
<img src="../images/logo-perfly.svg" width="122" height="52"></img>
11
<span flex></span>
12
src/main/webapp/scripts/controllers/ApplicationsController.js
@@ -20,6 +20,9 @@ angular.module('perfly')
20
var deviceId = $routeParams['deviceId'];
21
var progressDialogOpened = false;
22
23
+ $scope.goHome = function () {
24
+ $location.path('/');
25
+ }
26
27
$scope.getPaletteTarget = function (index) {
28
return [{target: 'tile-header-' + index, alpha: 0.05}];
0 commit comments