diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-02-11 17:37:42 +0100 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-02-11 17:37:42 +0100 |
commit | cbe6ebb3e4a75269660caa6c2c9e8a97d384b4e2 (patch) | |
tree | 5da1af033df256f4ee78f9fa86a0849c84a3b2d9 /afm-client/app/Frontend/widgets/ActionButtons | |
parent | ee82008b4b7b6a03287f86950d3bdb2b047b5bbc (diff) |
added install
Change-Id: I38b58d9cc8843fdfed557b4e3e15d1462710e2e7
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'afm-client/app/Frontend/widgets/ActionButtons')
-rw-r--r-- | afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js index b2d42b0..0ed0415 100644 --- a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js +++ b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js @@ -34,6 +34,7 @@ '<li><a ng-click=action("start")><i class="fi-check"> Start</i></a></li>' + '<li><a ng-click=action("stop")><i class="fi-x"> Stop</i></a></li>' + '<li><a ng-click=action("info")><i class="fi-info"> Info</i></a></li>' + + '<li><a ng-click=action("uninstall")><i class="fi-x"> Uninstall</i></a></li>' + '</ul>' + ''; @@ -122,8 +123,18 @@ }); break; + + case "uninstall": + AppCall.get ("afm-main", "uninstall", {id: scope.appID}, function(response) { + if (response.status !== 200 || response.data.jtype !== "AJB_reply") { + notifyError ("uninstall", response); + return; + } - + notifySuccess ("uninstall", response); + }); + break; + default: console.log ("ActionModal unknown action=[%s]", action); break; |