Web · Wiki · Activities · Blog · Lists · Chat · Meeting · Bugs · Git · Translate · Archive · People · Donate

Commit 4667b37db54ac2c1393189a8ba5ac66fff56c60a

  • avatar
  • Chris Porter <slug @quak…et.org>
  • Sat Jul 25 23:58:15 EDT 2009
Fix silly typo and add TextOption back.
  
291291 var type;
292292 if(stype == "boolean") {
293293 type = qwebirc.config.CheckOption;
294 } else {
294 } else if(stype == "function") {
295295 var options = default_();
296296 type = options.class_;
297 defualt_ = options.default_;
297 default_ = options.default_;
298 } else {
299 type = qwebirc.config.TextOption;
298300 }
299301 return new type(optionId, prefix, label, default_, moreextras);
300302 }