From 06246360d87faa53f943c039b31d9d37ae325c3d Mon Sep 17 00:00:00 2001 From: Andreas Brachold Date: Sat, 19 Dec 2009 19:48:25 +0000 Subject: * jason: fix stream window failed (wrong since r1456) --- skins/jason/stream.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/skins/jason/stream.js b/skins/jason/stream.js index e3760ac..9d85b03 100644 --- a/skins/jason/stream.js +++ b/skins/jason/stream.js @@ -119,7 +119,7 @@ Ext.extend(Ext.xxv.StreamWindow, Ext.Window, { }); -Ext.xxv.createStream = function(item,window) { +Ext.xxv.createStream = function(item,widget) { item.width = configuration.streamWidth; item.height = configuration.streamHeight; if(Ext.state.Manager.getProvider()) { @@ -136,9 +136,9 @@ Ext.xxv.createStream = function(item,window) { window.open(item.url, '_blank', "width=" + item.width + ",height="+ item.height); return null; } - if(!window){ + if(!widget){ return new Ext.xxv.StreamWindow(item); } else { - window.show(item); + widget.show(item); } }; -- cgit v1.2.3