]> jfr.im git - irc/quakenet/qwebirc.git/blame - js/ui/panes/url.js
fix connect button not closing 'Connect" tab
[irc/quakenet/qwebirc.git] / js / ui / panes / url.js
CommitLineData
09f39d2e
CP
1qwebirc.ui.URLPane = new Class({
2 Implements: [Events],
3 initialize: function(parent, options) {
4 var element = new Element("iframe");
5 element.style.width = "100%";
6 element.style.height = "100%";
7 element.src = options.url;
8 parent.appendChild(element);
9 }
10});