Changeset 611
- Timestamp:
- 06/02/08 15:44:22 (6 months ago)
- Files:
-
- 1 modified
-
trunk/twitternotifier/content/login.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/twitternotifier/content/login.js
r585 r611 152 152 153 153 if (this.accounts == null) { 154 this.util.$("username"). setAttribute("disabled", true);155 this.util.$("password"). setAttribute("disabled", true);156 this.util.$("remove-account-button"). setAttribute("disabled", true);154 this.util.$("username").disabled = true; 155 this.util.$("password").disabled = true; 156 this.util.$("remove-account-button").disabled = true; 157 157 return; 158 158 } 159 159 else { 160 this.util.$("username"). setAttribute("disabled", false);161 this.util.$("password"). setAttribute("disabled", false);162 this.util.$("remove-account-button"). setAttribute("disabled", false);160 this.util.$("username").disabled = false; 161 this.util.$("password").disabled = false; 162 this.util.$("remove-account-button").disabled = false; 163 163 } 164 164
