summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2009-04-06 14:46:44 +0000
committerAndreas Brachold <vdr07@deltab.de>2009-04-06 14:46:44 +0000
commit760692d05240aeafb1bdf8df7a4ee548fd9a2b1e (patch)
tree3d294d36c5d04a335efd61973e06b91c2921b3f9
parent82710558744a9f8b3ef18684e480c6a65fd628e8 (diff)
downloadxxv-760692d05240aeafb1bdf8df7a4ee548fd9a2b1e.tar.gz
xxv-760692d05240aeafb1bdf8df7a4ee548fd9a2b1e.tar.bz2
* jason: remove misplaced comma
-rw-r--r--skins/jason/common.js2
-rw-r--r--skins/jason/menus.js74
-rw-r--r--skins/jason/movetimers.js11
-rw-r--r--skins/jason/pic/audio-playback.pngbin848 -> 830 bytes
-rw-r--r--skins/jason/pic/remote-playback.pngbin830 -> 826 bytes
-rw-r--r--skins/jason/pic/web-playback.pngbin892 -> 864 bytes
6 files changed, 42 insertions, 45 deletions
diff --git a/skins/jason/common.js b/skins/jason/common.js
index 41d6602..cf74e34 100644
--- a/skins/jason/common.js
+++ b/skins/jason/common.js
@@ -78,7 +78,7 @@ Ext.xxv.MessageBox.prototype = {
m.slideIn('t').pause(delay).ghost("t", {remove:true,scope: this,callback:this.remove});
}
,init : function(){ }
- ,remove : function() {delete this;}
+ ,remove : function() {var x = this; delete x;}
,createBox : function(t, s){
return ['<div class="msg">',
'<div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>',
diff --git a/skins/jason/menus.js b/skins/jason/menus.js
index 41c7620..2775722 100644
--- a/skins/jason/menus.js
+++ b/skins/jason/menus.js
@@ -52,17 +52,17 @@ Ext.xxv.MainMenu = function(/*config*/){
,iconCls: 'setup-icon'
,menu: XXV.configMenu
},'-',{
- text: Ext.xxv.movetimersGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('mtl'); },
- iconCls:"movetimers-icon"
+ text: Ext.xxv.movetimersGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('mtl'); }
+ ,iconCls:"movetimers-icon"
},{
- text: Ext.xxv.vdrGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('vl'); },
- iconCls:"vdr-icon"
+ text: Ext.xxv.vdrGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('vl'); }
+ ,iconCls:"vdr-icon"
},{
- text: Ext.xxv.usersGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('ul'); },
- iconCls:"users-icon"
+ text: Ext.xxv.usersGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('ul'); }
+ ,iconCls:"users-icon"
}
]
});
@@ -89,14 +89,14 @@ Ext.xxv.MainMenu = function(/*config*/){
{
items:[
{
- text: Ext.xxv.autotimerGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('al'); },
- iconCls:"autotimer-icon"
+ text: Ext.xxv.autotimerGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('al'); }
+ ,iconCls:"autotimer-icon"
},
{
- text: Ext.xxv.timerGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('tl'); },
- iconCls:"timer-icon"
+ text: Ext.xxv.timerGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('tl'); }
+ ,iconCls:"timer-icon"
}
]
});
@@ -105,18 +105,18 @@ Ext.xxv.MainMenu = function(/*config*/){
{
items:[
{
- text: Ext.xxv.recordingsDataView.prototype.szTitle,
- handler: function() { XXV.tab.openTab('rl'); },
- iconCls:"recordings-icon"
+ text: Ext.xxv.recordingsDataView.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('rl'); }
+ ,iconCls:"recordings-icon"
}
,{
- text: Ext.xxv.chronicleGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('chrl'); },
- iconCls:"chronicle-icon"
+ text: Ext.xxv.chronicleGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('chrl'); }
+ ,iconCls:"chronicle-icon"
},{
- text: Ext.xxv.musicGrid.prototype.szTitle,
- handler: function() { XXV.tab.openTab('ml'); },
- iconCls:"music-icon",
+ text: Ext.xxv.musicGrid.prototype.szTitle
+ ,handler: function() { XXV.tab.openTab('ml'); }
+ ,iconCls:"music-icon"
}/*,{
text: Ext.xxv.mediaDataView.prototype.szTitle,
handler: function() { XXV.tab.openTab('mll'); },
@@ -130,14 +130,14 @@ Ext.xxv.MainMenu = function(/*config*/){
{
items:[
{
- text: Ext.xxv.RemoteWindow.prototype.szTitle,
- handler: function() { Ext.xxv.RemoteWindowOpen(); },
- iconCls:"remote-icon"
+ text: Ext.xxv.RemoteWindow.prototype.szTitle
+ ,handler: function() { Ext.xxv.RemoteWindowOpen(); }
+ ,iconCls:"remote-icon"
}
,{
- text: Ext.xxv.MonitorWindow.prototype.szTitle,
- handler: function() { Ext.xxv.MonitorWindowOpen(); },
- iconCls:"monitor-icon"
+ text: Ext.xxv.MonitorWindow.prototype.szTitle
+ ,handler: function() { Ext.xxv.MonitorWindowOpen(); }
+ ,iconCls:"monitor-icon"
}
]
});
@@ -300,10 +300,10 @@ Ext.extend(Ext.xxv.MainMenu, Ext.Toolbar, {
/******************************************************************************/
,Logout: function(){
Ext.MessageBox.show({
- title: 'Logout',
- msg: 'Please wait...',
- width:240,
- closable:false,
+ title: 'Logout'
+ ,msg: 'Please wait...'
+ ,width:240
+ ,closable:false
});
Ext.Ajax.request({
url: XXV.help.cmdAJAX('logout')
@@ -311,9 +311,9 @@ Ext.extend(Ext.xxv.MainMenu, Ext.Toolbar, {
setTimeout(function(){
XXV.viewport.container.fadeOut(
{
- remove:true,
- duration: .5,
- callback:function(){
+ remove:true
+ ,duration: .5
+ ,callback:function(){
Ext.MessageBox.updateText('Session closed!');
}
}
diff --git a/skins/jason/movetimers.js b/skins/jason/movetimers.js
index a075694..defce32 100644
--- a/skins/jason/movetimers.js
+++ b/skins/jason/movetimers.js
@@ -43,19 +43,16 @@ Ext.xxv.movetimersGrid = function(viewer) {
header: this.szColSource
,dataIndex: 'source'
,width: 200
- },
- { header: this.szColDestination
+ },{ header: this.szColDestination
,dataIndex: 'destination'
,width: 200
- },
- { header: this.szColMove
+ },{ header: this.szColMove
,dataIndex: 'move'
,width: 200
- },
- { header: this.szColOriginal
+ },{ header: this.szColOriginal
,dataIndex: 'original'
,width: 200
- },
+ }
];
var cm = new Ext.grid.ColumnModel(this.columns);
diff --git a/skins/jason/pic/audio-playback.png b/skins/jason/pic/audio-playback.png
index e2abb53..799a78c 100644
--- a/skins/jason/pic/audio-playback.png
+++ b/skins/jason/pic/audio-playback.png
Binary files differ
diff --git a/skins/jason/pic/remote-playback.png b/skins/jason/pic/remote-playback.png
index cb66d44..9fabea7 100644
--- a/skins/jason/pic/remote-playback.png
+++ b/skins/jason/pic/remote-playback.png
Binary files differ
diff --git a/skins/jason/pic/web-playback.png b/skins/jason/pic/web-playback.png
index 213c96c..a52a7b2 100644
--- a/skins/jason/pic/web-playback.png
+++ b/skins/jason/pic/web-playback.png
Binary files differ