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