Skip to content

Instantly share code, notes, and snippets.

@freshcutdevelopment
Created May 15, 2016 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freshcutdevelopment/309f0470273f80f90f3f21cc5b558525 to your computer and use it in GitHub Desktop.
Save freshcutdevelopment/309f0470273f80f90f3f21cc5b558525 to your computer and use it in GitHub Desktop.
aurelia todo tooltip attached
attached() {
$(this.element).tooltip({
title:this.title,
placement:this.placement
});
}
@Vallabharayudu
Copy link

I am following the structure to implement popover from Sean Hunter Blog . Now i want provide popover content as a dynamic html content ,that means I want to show one html pattern inside content.

Previously I work with knockout.js there we can write like below code
data-bind="popover: { template: 'myId', trigger: 'click', placement: 'right', container: 'body' }"

and "myId" will contain HTML like below code

<div id="myId">Popover Content Goes here</div>

Is there any way to implement like above with aurelia js.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment