Popovers on main page showing status

Signed-off-by: Nathan Booth <nath.booth@gmail.com>
This commit is contained in:
Nathan Booth
2011-12-19 18:11:04 +00:00
parent 9fd382dddc
commit bd676e558e
5 changed files with 434 additions and 13 deletions

View File

@@ -13,3 +13,13 @@ var sb = {
};
$('document').ready(sb.init);
$(function () {
$("a[rel=popover]")
.popover({
offset: 10
})
.click(function(e) {
e.preventDefault()
})
})