Changeset 1781:c03f63c79309
- Timestamp:
- 09/10/13 12:26:51 (12 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/auth.php
r1558 r1781 289 289 if (upw.length == 0) { return; } 290 290 291 if ($.browser.mozilla) { 292 uid.keypress(processKey); 293 } else { 294 uid.keydown(processKey); 295 } 291 uid.keypress(processKey); 292 296 293 function processKey(evt) { 297 if (evt. keyCode== 13 && upw.val() == '') {294 if (evt.which == 13 && upw.val() == '') { 298 295 upw.focus(); 299 296 return false; -
admin/js/common.js
r1779 r1781 83 83 84 84 var set_user_pref = p.hide ^ p.reverse_user_pref; 85 if (p.user_pref && p.unfolded_sections && (p.user_pref in p.unfolded_sections)) {85 if (p.user_pref && p.unfolded_sections !== undefined && (p.user_pref in p.unfolded_sections)) { 86 86 p.hide = p.reverse_user_pref; 87 87 }
Note: See TracChangeset
for help on using the changeset viewer.