tag-youre-it/content_script.js
2015-09-26 20:48:26 +02:00

25 lines
No EOL
425 B
JavaScript

$(document).ready(function () {
console.log('hello world!');
var popoverContent;
$.get('test-menu-content.html', function (data) {
popoverContent = data;
contentReady();
});
function contentReady () {
$('.selected').popover({
title: "Please select a semantic tag",
content: popoverContent,
html: true,
placement: 'auto'
});
$('.selected').popover('show');
}
});