From 00b2bafbbdd507a438464f236f2c96b01e731ee1 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 5 Aug 2014 02:27:34 +0200 Subject: [PATCH] fix missing argument in Ox..text() --- source/Ox/js/DOM.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox/js/DOM.js b/source/Ox/js/DOM.js index 4cef3375..201d7116 100644 --- a/source/Ox/js/DOM.js +++ b/source/Ox/js/DOM.js @@ -455,7 +455,7 @@ Ox.$ = Ox.element = function(value) { (text) -> This element text The text contents @*/ - text: function() { + text: function(string) { var ret; if (arguments.length == 0) { ret = Ox.isString(this.textContent)