Files
status-board/public/scripts/main.js
Nathan Booth bd676e558e Popovers on main page showing status
Signed-off-by: Nathan Booth <nath.booth@gmail.com>
2011-12-19 18:14:08 +00:00

25 lines
415 B
JavaScript

/**
* StatusBoard main script file
*
*
*/
var sb = {
init: function() {
$('.alert-data').alert();
}
};
$('document').ready(sb.init);
$(function () {
$("a[rel=popover]")
.popover({
offset: 10
})
.click(function(e) {
e.preventDefault()
})
})