meleyal
meleyal
+1
Looks like the same issue as #30
Currently no but I'm looking into it
Seems to be related to this: https://github.com/sstephenson/ruby-eco/issues/1
Does this help? https://github.com/meleyal/backbone-on-rails/issues/43
There's an old [pull request](https://github.com/meleyal/backbone-on-rails/pull/44) that needs some tests, I'd be happy to integrate this if you can take a look?
5 years late to the party but just stumbled on this in my PR queue. @addyosmani can you merge or close this, thanks!
@eappell for now you could try manually triggering the tooltip e.g. ``` javascript client.on('mouseover', function() { btn.tooltip('show') } ```
Do you have the tooltip configured to show/hide manually? ``` javascript btn.tooltip({ trigger: 'manual' }) ```
Did you try initializing the tooltip first, then showing it? ``` javascript var copyClient = new ZeroClipboard($("#btnCopy")); var copyBtn = $("#btnCopy").tooltip({ trigger: 'manual' }); copyClient.on('mouseover', function () { copyBtn.tooltip('show'); });...