diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-21 01:52:39 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-21 01:52:39 +0100 |
commit | 20853066884b9d3cddfa29c9741d625ba625c5f3 (patch) | |
tree | 0432c69e2cbe399c249fe1821a80427e2c0dc196 /afb-client/app | |
parent | 3b1b2ddc4692776318a135a66c1da8c5dee13f64 (diff) |
Few hack for Post
Diffstat (limited to 'afb-client/app')
-rw-r--r-- | afb-client/app/Frontend/pages/Sample/SampleModule.scss | 2 | ||||
-rw-r--r-- | afb-client/app/Frontend/widgets/FormInput/UploadFiles.js | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/afb-client/app/Frontend/pages/Sample/SampleModule.scss b/afb-client/app/Frontend/pages/Sample/SampleModule.scss index 2e54c53..7654424 100644 --- a/afb-client/app/Frontend/pages/Sample/SampleModule.scss +++ b/afb-client/app/Frontend/pages/Sample/SampleModule.scss @@ -24,7 +24,7 @@ height : 4.5rem; .sample-button { - float: left; + float: right; width: 5rem; }; diff --git a/afb-client/app/Frontend/widgets/FormInput/UploadFiles.js b/afb-client/app/Frontend/widgets/FormInput/UploadFiles.js index 88669a9..8bc8eca 100644 --- a/afb-client/app/Frontend/widgets/FormInput/UploadFiles.js +++ b/afb-client/app/Frontend/widgets/FormInput/UploadFiles.js @@ -53,6 +53,7 @@ function LoadFileSvc (scope, elem, posturl, files, thumbnailCB) { // Upload is finish let's notify controler callback xmlReq.onload = function () { elem.addClass ("success"); + elem.removeClass ("error"); var response ={ status : xmlReq.status, headers: xmlReq.getAllResponseHeaders() @@ -61,7 +62,8 @@ function LoadFileSvc (scope, elem, posturl, files, thumbnailCB) { }; xmlReq.onerror = function () { - elem.addClass ("error fail"); + elem.addClass ("error"); + elem.removeClass ("success"); var response ={ status : xmlReq.status, headers: xmlReq.getAllResponseHeaders() @@ -70,7 +72,8 @@ function LoadFileSvc (scope, elem, posturl, files, thumbnailCB) { }; xmlReq.onabort = function () { - elem.addClass ("error abort"); + elem.addClass ("error"); + elem.removeClass ("success"); var response ={ status : xmlReq.status, headers: xmlReq.getAllResponseHeaders() |