Browse Source

Change status attribute name.

Brendan Dahl 13 years ago
parent
commit
4734cd8198
  1. 2
      web/viewer.css
  2. 2
      web/viewer.js

2
web/viewer.css

@ -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;

2
web/viewer.js

@ -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;
}, },

Loading…
Cancel
Save