diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-20 21:59:32 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-20 21:59:32 +0100 |
commit | 3b1b2ddc4692776318a135a66c1da8c5dee13f64 (patch) | |
tree | 18d757de7d82006f0b0b31c03e058cc0c979309e /afb-client/app/Frontend/pages | |
parent | 6700ae902ee16d9474098c5435e4cdf210962851 (diff) |
Fixed valid/invalid status for app
Diffstat (limited to 'afb-client/app/Frontend/pages')
-rw-r--r-- | afb-client/app/Frontend/pages/Sample/Sample.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/afb-client/app/Frontend/pages/Sample/Sample.html b/afb-client/app/Frontend/pages/Sample/Sample.html index 35523a9..7461d49 100644 --- a/afb-client/app/Frontend/pages/Sample/Sample.html +++ b/afb-client/app/Frontend/pages/Sample/Sample.html @@ -21,14 +21,14 @@ animationIn: slideInRight accept = [image] acceptable accept for upload --> <upload-image name="avatar" category="avatar" thumbnail="tux-visitor.png" maxsize="100" - posturl="/api/post/upload-image" callback="ctrl.FileUploaded" accept="image"> + posturl="/api/post/upload-image" callback="ctrl.FileUploaded" accept="image" title="Change your Avatar"> </upload-image> <!-- Warning: name=xxx should match with what server expect [used as xform input name --> - <upload-audio name=music posturl="/api/post/upload-music" callback="ctrl.FileUploaded"></upload-audio> + <upload-audio name=music posturl="/api/post/upload-music" callback="ctrl.FileUploaded" title="Upload your Music"></upload-audio> <!-- Warning: name=xxx should match with what server expect [used as xform input name --> - <upload-appli name=appli posturl="/api/post/upload-appli" callback="ctrl.FileUploaded"></upload-appli> + <upload-appli name=appli posturl="/api/post/upload-appli" callback="ctrl.FileUploaded" title="Upload AGL App"></upload-appli> </div> |