]> 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 ccc584b00f009ec0d8d4759fd52a85c0651032fc..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,7 +28,6 @@ qwebirc.ui.Interface = new Class({
     tlightness: null,
     uiOptionsArg: null,
     nickValidation: null,
-    helpURL: null,
     dynamicBaseURL: "/",
     staticBaseURL: "/",
     cloak: false,
@@ -65,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()
     };