Change status attribute name.

This commit is contained in:
Brendan Dahl 2012-10-10 15:46:04 -07:00
parent c3debc6ee0
commit 4734cd8198
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ html[dir='rtl'] .findbar {
-moz-user-select:none; -moz-user-select:none;
} }
#findInput[status="pending"] { #findInput[data-status="pending"] {
background-image: url(images/loading-small.png); background-image: url(images/loading-small.png);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: right; background-position: right;

View File

@ -585,7 +585,7 @@ var PDFFindBar = {
this.findField.classList.remove('notFound'); this.findField.classList.remove('notFound');
} }
this.findField.setAttribute('status', status); this.findField.setAttribute('data-status', status);
this.findMsg.textContent = findMsg; this.findMsg.textContent = findMsg;
}, },