summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--frontend/beta/css/yui-extensions/basic-dialog.css2
-rw-r--r--frontend/beta/js/Clipperz/PM/DataModel/Record.js8
2 files changed, 7 insertions, 3 deletions
diff --git a/frontend/beta/css/yui-extensions/basic-dialog.css b/frontend/beta/css/yui-extensions/basic-dialog.css
index bad0679..5a9f311 100644
--- a/frontend/beta/css/yui-extensions/basic-dialog.css
+++ b/frontend/beta/css/yui-extensions/basic-dialog.css
@@ -25,5 +25,4 @@ refer to http://www.clipperz.com.
25 25
26.ydlg-proxy { 26.ydlg-proxy {
27 background-image: url(../images/default/gradient-bg.gif);
28 background-color:#c3daf9; 27 background-color:#c3daf9;
29 border:1px solid #6593cf; 28 border:1px solid #6593cf;
@@ -94,5 +93,4 @@ body.masked .ydlg select {
94} 93}
95.ydlg .ydlg-dlg-body{ 94.ydlg .ydlg-dlg-body{
96 background:url(../images/default/layout/gradient-bg.gif);
97 border:1px solid #6593cf; 95 border:1px solid #6593cf;
98 border-top:0 none; 96 border-top:0 none;
diff --git a/frontend/beta/js/Clipperz/PM/DataModel/Record.js b/frontend/beta/js/Clipperz/PM/DataModel/Record.js
index ffb45de..9e496de 100644
--- a/frontend/beta/js/Clipperz/PM/DataModel/Record.js
+++ b/frontend/beta/js/Clipperz/PM/DataModel/Record.js
@@ -293,6 +293,12 @@ console.log("Record.processData", someValues);
293 } 293 }
294 294
295 // currentVersionParameters = someValues['currentVersion']; 295 // community edition doesn't currently pass version
296 // information
297 if (someValues['versions'] == null) {
298 currentVersionParameters = someValues['currentVersion'];
299 } else {
296 currentVersionParameters = someValues['versions'][someValues['currentVersion']]; 300 currentVersionParameters = someValues['versions'][someValues['currentVersion']];
301 }
302
297console.log("Record.processData - this.currentVersionKey()", this.currentVersionKey()); 303console.log("Record.processData - this.currentVersionKey()", this.currentVersionKey());
298console.log("Record.processData - currentVersionParameters", currentVersionParameters); 304console.log("Record.processData - currentVersionParameters", currentVersionParameters);