SYWEB-13: disabled "Send image" button if the browser does not support HTML5 file API
This commit is contained in:
parent
f9688d7519
commit
e9670fd144
|
@ -31,6 +31,9 @@ angular.module('mFileInput', [])
|
|||
},
|
||||
|
||||
link: function(scope, element, attrs, ctrl) {
|
||||
|
||||
// Check if HTML5 file selection is supported
|
||||
if (window.FileList) {
|
||||
element.bind("click", function() {
|
||||
element.find("input")[0].click();
|
||||
element.find("input").bind("change", function(e) {
|
||||
|
@ -38,6 +41,13 @@ angular.module('mFileInput', [])
|
|||
scope.$apply();
|
||||
});
|
||||
});
|
||||
}
|
||||
else {
|
||||
setTimeout(function() {
|
||||
element.attr("disabled", true);
|
||||
element.attr("title", "The app uses the HTML5 File API to send files. Your browser does not support it.");
|
||||
}, 1);
|
||||
}
|
||||
|
||||
// Change the mouse icon on mouseover on this element
|
||||
element.css("cursor", "pointer");
|
||||
|
|
Loading…
Reference in New Issue