X-Git-Url: https://jfr.im/git/irc/quakenet/qwebirc.git/blobdiff_plain/e917166690036cc803310b83f6833950b2043a0b..2126d43f70fbd806109bb80d7e133d75fac1c6c2:/js/qwebircinterface.js diff --git a/js/qwebircinterface.js b/js/qwebircinterface.js index ccc584b..3b23ffe 100644 --- a/js/qwebircinterface.js +++ b/js/qwebircinterface.js @@ -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() };