Przeglądaj źródła

Delete reference to Zepto for QuoJS

http://quojs.tapquo.com
@soyjavi 14 lat temu
rodzic
commit
dabc32deba

+ 1 - 1
src/Lungo.Dom.js

@@ -14,7 +14,7 @@
      * @method dom
      *
      * @param  {string} <Markup> element selector
-     * @return {Object} Zepto <element> instance
+     * @return {Object} QuoJS <element> instance
 */
 LUNGO.dom = function(selector) {
     return $$(selector);

+ 5 - 5
src/Lungo.Service.js

@@ -3,7 +3,7 @@
  *
  * @namespace LUNGO
  * @class Service
- * @requires Zepto
+ * @requires QuoJS
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1
@@ -18,8 +18,8 @@ LUNGO.Service = (function(lng, $$, undefined) {
      *
      * @param  {string} Containing the URL to which the request is sent
      * @param  {object} A map or string that is sent to the server with the request
-     * @param  {Function} [OPTIONAL] Callback function after the request
-     * @param  {string} [OPTIONAL] Mime-Tipe: json, xml, html, or text
+     * @param  {Function} Callback function after the request [OPTIONAL]
+     * @param  {string} Mime-Type: json, xml, html, or text [OPTIONAL]
      */
     var get = function(url, data, success, dataType) {
         return $$.get(url, data, success, dataType);
@@ -32,8 +32,8 @@ LUNGO.Service = (function(lng, $$, undefined) {
      *
      * @param  {string} Containing the URL to which the request is sent
      * @param  {object} A map or string that is sent to the server with the request
-     * @param  {Function} [OPTIONAL] Callback function after the request
-     * @param  {string} [OPTIONAL] Mime-Tipe: json, xml, html, or text
+     * @param  {Function} Callback function after the request [OPTIONAL]
+     * @param  {string} Mime-Type: json, xml, html, or text [OPTIONAL]
      */
     var post = function(url, data, success, dataType) {
         return $$.post(url, data, success, dataType);

+ 0 - 1
src/boot/Lungo.Boot.Article.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.Boot
  * @class Article
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/boot/Lungo.Boot.Data.js

@@ -4,7 +4,6 @@
  *
  * @namespace LUNGO.Boot
  * @class Data
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/boot/Lungo.Boot.Section.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.Boot
  * @class Section
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/router/Lungo.Router.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO
  * @class Router
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/view/Lungo.View.Scroll.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.View
  * @class Scroll
- * @requires Zepto
  * @requires iScroll
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi

+ 0 - 1
src/view/Lungo.View.Template.Binding.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.View.Template
  * @class Binding
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/view/Lungo.View.Template.List.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.View.Template
  * @class List
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1

+ 0 - 1
src/view/Lungo.View.Template.js

@@ -3,7 +3,6 @@
  *
  * @namespace LUNGO.View
  * @class Template
- * @requires Zepto
  *
  * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  * @author Guillermo Pascual <pasku@tapquo.com> || @pasku1