diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-20 21:04:34 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-20 21:04:34 +0100 |
commit | 4136c1506e0c894e604ec069339313987a7e05e7 (patch) | |
tree | 1276966f93dce30949e78d4aef456223dea71b48 /afb-client/app/Frontend/pages/Home | |
parent | 07eb8e102607da8d6a4c1cd9835e8465c9280161 (diff) |
Implemented client upload with rangeslider and zip open
Diffstat (limited to 'afb-client/app/Frontend/pages/Home')
-rw-r--r-- | afb-client/app/Frontend/pages/Home/Home.html | 7 | ||||
-rw-r--r-- | afb-client/app/Frontend/pages/Home/HomeModule.js | 8 |
2 files changed, 7 insertions, 8 deletions
diff --git a/afb-client/app/Frontend/pages/Home/Home.html b/afb-client/app/Frontend/pages/Home/Home.html index 6eda66d..25bb983 100644 --- a/afb-client/app/Frontend/pages/Home/Home.html +++ b/afb-client/app/Frontend/pages/Home/Home.html @@ -1,5 +1,4 @@ -<!-- comment --> - +<!-- Foundation Annotations generate tmp/route.js --> --- name: myhome url: /home @@ -31,6 +30,6 @@ animationIn: slideInRight </div> </div> -<!-- + <link-button href="sample" icon="fi-home" label="sample"></link-button> ---> + diff --git a/afb-client/app/Frontend/pages/Home/HomeModule.js b/afb-client/app/Frontend/pages/Home/HomeModule.js index 30e796e..6ebaefc 100644 --- a/afb-client/app/Frontend/pages/Home/HomeModule.js +++ b/afb-client/app/Frontend/pages/Home/HomeModule.js @@ -29,10 +29,10 @@ angular.module('HomeModule', ['SubmitButton', 'TokenRefresh']) // Make sure we clean everything when Open/Close is called if (apiname === "APIcreate" || apiname === "APIreset") { - scope["APIreset"]=''; - scope["APIcreate"]=''; - scope["APIrefresh"]=''; - scope["APIcheck"]=''; + scope.APIreset =''; + scope.APIcreate =''; + scope.APIrefresh=''; + scope.APIcheck =''; } scope[apiname]="success"; |