Update of /cvsroot/qooxdoo/qooxdoo/source/script/widgets
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13544/source/script/widgets
Modified Files:
Tag: renderer
QxGallery.js QxGalleryList.js
Log Message:
Some fixes
Index: QxGalleryList.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGalleryList.js,v
retrieving revision 1.7.2.8
retrieving revision 1.7.2.9
diff -u -d -r1.7.2.8 -r1.7.2.9
--- QxGalleryList.js 23 Jan 2006 15:17:13 -0000 1.7.2.8
+++ QxGalleryList.js 25 Jan 2006 14:14:07 -0000 1.7.2.9
@@ -40,6 +40,8 @@
this._processedImages = 0;
this.setOverflow("auto");
+
+ this.setHtmlProperty("className", "QxGalleryList");
this._manager = new QxDomSelectionManager(this);
@@ -147,11 +149,11 @@
};
proto.scrollItemIntoViewX = function(vItem) {
- QxDOM.scrollIntoViewX(vItem, vItem.parentNode.parentNode);
+ QxDom.scrollIntoViewX(vItem, vItem.parentNode.parentNode);
};
proto.scrollItemIntoViewY = function(vItem) {
- QxDOM.scrollIntoViewY(vItem, vItem.parentNode.parentNode);
+ QxDom.scrollIntoViewY(vItem, vItem.parentNode.parentNode);
};
proto.getItems = function() {
Index: QxGallery.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGallery.js,v
retrieving revision 1.21.2.9
retrieving revision 1.21.2.10
diff -u -d -r1.21.2.9 -r1.21.2.10
--- QxGallery.js 23 Jan 2006 15:17:13 -0000 1.21.2.9
+++ QxGallery.js 25 Jan 2006 14:14:07 -0000 1.21.2.10
@@ -40,6 +40,8 @@
this._processedImages = 0;
this.setOverflow("auto");
+
+ this.setHtmlProperty("className", "QxGallery");
this._manager = new QxDomSelectionManager(this);
@@ -359,11 +361,11 @@
};
proto.scrollItemIntoViewX = function(vItem) {
- QxDOM.scrollIntoViewX(vItem, vItem.parentNode.parentNode);
+ QxDom.scrollIntoViewX(vItem, vItem.parentNode.parentNode);
};
proto.scrollItemIntoViewY = function(vItem) {
- QxDOM.scrollIntoViewY(vItem, vItem.parentNode.parentNode);
+ QxDom.scrollIntoViewY(vItem, vItem.parentNode.parentNode);
};
@@ -522,4 +524,4 @@
frame.appendChild(comment);
};
-};
\ No newline at end of file
+};
|