Skip to content
Snippets Groups Projects
Commit bfb519cc authored by Raghu Nayyar's avatar Raghu Nayyar
Browse files

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

fix placeholder fake in IE8 & 9 that brokes group listing in user manage...
parents e47f4758 23e09be6
Branches
No related tags found
No related merge requests found
......@@ -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;
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment