当我试图在dom元素上设置twitter bootstrap工具提示时
(.tooltip $( :#someid) (clj->js {:placement :left}))
我得到了
> Uncaught TypeError: Object function (sel, var_args) {
> var p__9921 = null;
> if(goog.isDef(var_args)) {
> p__9921 = cljs.core.array_seq(Array.prototype.slice.call(arguments, 1), 0)
> }
> return $__delegate.call(this, sel, p__9921) } has no method 'tooltip' clusty.js:23013 (anonymous function)
我没有使用任何高级优化,并且没有使用jayq与其他libs如datatables的问题......
我缺少什么?
由于
答案 0 :(得分:0)
您好像已经换了美元符号并打开了括号。
(.tooltip ($ :#someid) (clj->js {:placement :left}))
(在此处重新发布Kevin的评论,以便可以解决问题)