Merge pull request #12636 from owncloud/fix-ie9-placeholder

fix placeholder fake in IE8 & 9 that brokes group listing in user manage...
This commit is contained in:
Raghu Nayyar 2014-12-06 11:54:31 +05:30
commit bfb519cced

View file

@ -70,7 +70,14 @@ UserManagementFilter.prototype.run = _.debounce(function() {
* @returns string
*/
UserManagementFilter.prototype.getPattern = function() {
return this.filterInput.val();
var input = this.filterInput.val(),
html = $('html'),
isIE8or9 = html.hasClass('lte9');
// FIXME - TODO - once support for IE8 and IE9 is dropped
if(isIE8or9 && input == this.filterInput.attr('placeholder')) {
input = '';
}
return input;
};
/**