Oh, thanks for the explanation.
I looked at the twitterbuzz code before replying, saw the function
calls with arguments written the usual way, and (erroneously) decided
it would be the same for the zero-arity calls. But it's there in the
wiki.
On Aug 1, 5:17 pm, Chouser wrote:
> In Clojure you a
On Mon, Aug 1, 2011 at 8:54 AM, Dmitry Gutov wrote:
> On Aug 1, 1:32 pm, Brian McKenna wrote:
>> For anyone else with the same problem, I just found the nice way to do it:
>>
>> (def iframe (. field (getEditableIframe)))
>
> This should be equivalent to (def iframe (.getEditableIframe field))
On Aug 1, 1:32 pm, Brian McKenna wrote:
> For anyone else with the same problem, I just found the nice way to do it:
>
> (def iframe (. field (getEditableIframe)))
This should be equivalent to (def iframe (.getEditableIframe field))
which is the usual way to do method calls on the host langua
For anyone else with the same problem, I just found the nice way to do it:
(def iframe (. field (getEditableIframe)))
Much better!
Thanks,
Brian McKenna
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojur
In JavaScript, the `this` identifier gets "bound" when a function is
called. Determining what to bind is from either:
* Looking up the object that the function was called from
* An explicit parameter in these functions:
* `Function.prototype.apply`
* `Function.prototype.call`
So the followin