http://iamceege.github.io/tooltipster/有以下用法:
$('#my-tooltip').tooltipster({
content: $('<span><img src="my-image.png" /> <strong>This text is in bold case !</strong></span>')
});
在恩伯我尝试过:
App.MapItem = Ember.View.extend
didInsertElement: ->
@$().tooltipster
content: $(App.MapTooltip.create(item: @get('item')).renderToBuffer().buffer)
这样可行,但会返回DEPRECATION消息:
DEPRECATION: Using the defaultContainer is no longer supported. [defaultContainer#lookup] see: http://git.io/EKPpnA
如何解决这个问题,或者我可以采用其他方法来使用Ember.View填充工具提示内容?