Author: reebalazs
Date: Tue Jul 29 12:37:46 2008
New Revision: 56837
Modified:
kukit/kukit.js/branch/ree-binding-improvements/kukit/dom.js
Log:
Fix _cssQuery namespace issue
Modified: kukit/kukit.js/branch/ree-binding-improvements/kukit/dom.js
==============================================================================
--- kukit/kukit.js/branch/ree-binding-improvements/kukit/dom.js (original)
+++ kukit/kukit.js/branch/ree-binding-improvements/kukit/dom.js Tue Jul 29
12:37:46 2008
@@ -91,7 +91,7 @@
var _USE_BASE2_LEGACY = (typeof(base2.DOM.Document.querySelectorAll) ==
'undefined');
if (! _USE_BASE2_LEGACY) {
;;; kukit.log('Using cssQuery from base2.');
- var _cssQuery = function(selector, inNodes) {
+ kukit.dom._cssQuery = function(selector, inNodes) {
// global scope, always.
// This is very bad. However the binding makes sure that
// nodes once bound will never be bound again
@@ -106,7 +106,7 @@
};
} else {
;;; kukit.log('Using cssQuery from base2. (Using legacy API
document.matchAll)');
- var _cssQuery = function(selector, inNodes) {
+ kukit.dom._cssQuery = function(selector, inNodes) {
// global scope, always.
// This is very bad. However the binding makes sure that
// nodes once bound will never be bound again
@@ -122,7 +122,7 @@
};
} else {
;;;kukit.log('Using original cssQuery.');
- var _cssQuery = function(selector, inNodes) {
+ kukit.dom._cssQuery = function(selector, inNodes) {
// global scope, always.
// This is very bad. However the binding makes sure that
// nodes once bound will never be bound again
_______________________________________________
Kukit-checkins mailing list
[email protected]
http://codespeak.net/mailman/listinfo/kukit-checkins