Popover's content function is executed twice
Created by: danieldean44
When using the content function for a popover, it seems to be executed twice when the trigger occurs.
$("#blah").popover({
placement: 'bottom',
trigger: 'click',
content: function () {
console.log("Get content");
return "Hi";
}
});