Browse Source

New DOMHandler: QuoJS

@soyjavi 14 years ago
parent
commit
841c35cf6a
1 changed files with 5 additions and 5 deletions
  1. 5 5
      src/dom/Lungo.Dom.js

+ 5 - 5
src/dom/Lungo.Dom.js

@@ -1,6 +1,6 @@
-/** 
+/**
  * LungoJS Dom Handler
- * 
+ *
  * @namespace LUNGO
  * @class Dom
  *
@@ -8,7 +8,7 @@
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
  */
 
-LUNGO.Dom = (function(lng, $, undefined) {
+LUNGO.Dom = (function(lng, $$, undefined) {
 
     /**
      * Add an event listener
@@ -19,11 +19,11 @@ LUNGO.Dom = (function(lng, $, undefined) {
      * @return {Object} Zepto <element> instance
      */
     var query = function(selector) {
-        return $(selector);
+        return $$(selector);
     };
 
     return {
         query: query
     };
 
-})(LUNGO, Zepto);
+})(LUNGO, Quo);