home *** CD-ROM | disk | FTP | other *** search
- var YaSubPrefs = {
- accepted: false,
-
- savedCyValue: true,
-
- get currentCyValue() {
- return _YaPrefs.nsIYa.prefs.showCyValue;
- },
-
- set currentCyValue(val) {
- _YaPrefs.nsIYa.prefs.showCyValue = val;
- return this.currentCyValue;
- },
-
- beforeAccept: function() {
- this.accepted = true;
- return true;
- },
-
- beforeUnload: function() {
- if (!this.accepted && this.currentCyValue != this.savedCyValue)
- this.currentCyValue = this.savedCyValue;
- },
-
- init: function() {
- this.savedCyValue = this.currentCyValue;
- }
- };