* remove autofocus on input certain input fields if browser is msie
* Update sharedialoglinkshareview.js
* Update sharedialogview.js
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
password: ''
});
} else {
- this.$el.find('.linkPassText').focus();
+ if (!OC.Util.isIE()) {
+ this.$el.find('.linkPassText').focus();
+ }
}
},
if (!this._loadingOnce) {
this._loadingOnce = true;
// the first time, focus on the share field after the spinner disappeared
- _.defer(function() {
- self.$('.shareWithField').focus();
- });
+ if (!OC.Util.isIE()) {
+ _.defer(function () {
+ self.$('.shareWithField').focus();
+ });
+ }
}
},