2014-03-02 14:47:55 +01:00
|
|
|
var Gogits = {};
|
|
|
|
|
|
|
|
(function($){
|
|
|
|
Gogits.showTooltips = function(){
|
|
|
|
$("body").tooltip({
|
|
|
|
selector: "[data-toggle=tooltip]"
|
|
|
|
//container: "body"
|
|
|
|
});
|
|
|
|
};
|
|
|
|
Gogits.showTab = function (selector, index) {
|
|
|
|
if (!index) {
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
$(selector).tab("show");
|
|
|
|
$(selector).find("li:eq(" + index + ") a").tab("show");
|
|
|
|
}
|
2014-03-03 15:40:22 +01:00
|
|
|
})(jQuery);
|
|
|
|
|
|
|
|
|
|
|
|
function initCore(){
|
|
|
|
Gogits.showTooltips();
|
|
|
|
}
|