]> jfr.im git - irc/quakenet/qwebirc.git/blobdiff - js/qwebircinterface.js
Merge pull request #324 from retropc/master
[irc/quakenet/qwebirc.git] / js / qwebircinterface.js
index c1eb3c281b579f93f47303bf937387a6ef5bd2cb..3b23ffe90df84992d9b6763268a4f90e2c06ab83 100644 (file)
@@ -11,8 +11,8 @@ function qwebirc_ui_onbeforeunload(e) { /* IE sucks */
 qwebirc.ui.Interface = new Class({
   Implements: [Options],
   options: {
-    initialNickname: "qwebirc" + Math.ceil(Math.random() * 100000),
-    initialChannels: "",
+    initialNickname: null,
+    initialChannels: null,
     networkName: "ExampleNetwork",
     networkServices: [],
     loginRegex: null,
@@ -28,10 +28,11 @@ qwebirc.ui.Interface = new Class({
     tlightness: null,
     uiOptionsArg: null,
     nickValidation: null,
-    helpURL: null,
     dynamicBaseURL: "/",
     staticBaseURL: "/",
-    cloak: false
+    cloak: false,
+    logoURL: null,
+    accountWhoisCommand: null
   },
   initialize: function(element, ui, options) {
     this.setOptions(options);
@@ -63,7 +64,6 @@ qwebirc.ui.Interface = new Class({
       dynamicBaseURL: options.dynamicBaseURL,
       staticBaseURL: options.staticBaseURL,
       baseURL: options.baseURL,
-      helpURL: options.helpURL,
       nicknameValidator: $defined(options.nickValidation) ? new qwebirc.irc.NicknameValidator(options.nickValidation) : new qwebirc.irc.DummyNicknameValidator()
     };