home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 March / Chip_2011.03_CD.iso / Tools / yabar.msi / filD6EA66AD0C0C2B2881941FEE773A505D < prev    next >
Encoding:
Text File  |  2010-04-16  |  587 b   |  28 lines

  1. var YaSubPrefs = {
  2.   accepted: false,
  3.   
  4.   savedCyValue: true,
  5.   
  6.   get currentCyValue() {
  7.     return _YaPrefs.nsIYa.prefs.showCyValue;
  8.   },
  9.   
  10.   set currentCyValue(val) {
  11.     _YaPrefs.nsIYa.prefs.showCyValue = val;
  12.     return this.currentCyValue;
  13.   },
  14.   
  15.   beforeAccept: function() {
  16.     this.accepted = true;
  17.     return true;
  18.   },
  19.   
  20.   beforeUnload: function() {
  21.     if (!this.accepted && this.currentCyValue != this.savedCyValue)
  22.       this.currentCyValue = this.savedCyValue;
  23.   },
  24.   
  25.   init: function() {
  26.     this.savedCyValue = this.currentCyValue;
  27.   }
  28. };