gitlab-org--gitlab-foss/app/assets/javascripts/application.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2011-10-08 21:36:38 +00:00
// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
2011-10-26 17:42:24 +00:00
//= require jquery-ui
2011-10-08 21:36:38 +00:00
//= require jquery_ujs
2011-10-26 17:42:24 +00:00
//= require jquery.ui.selectmenu
2011-11-04 08:11:14 +00:00
//= require jquery.tagify
2011-10-26 17:42:24 +00:00
//= require jquery.cookie
2011-11-15 08:45:15 +00:00
//= require modernizr
//= require chosen
2011-11-12 22:30:51 +00:00
//= require raphael
//= require branch-graph
2011-10-08 21:36:38 +00:00
//= require_tree .
$(function(){
2011-10-26 17:17:46 +00:00
$(".one_click_select").live("click", function(){
2011-10-08 21:36:38 +00:00
$(this).select();
});
$('select#branch').selectmenu({style:'popup', width:200});
$('select#tag').selectmenu({style:'popup', width:200});
2011-11-10 21:55:55 +00:00
2011-11-15 08:34:30 +00:00
$(".account-box").mouseenter(showMenu);
$(".account-box").mouseleave(resetMenu);
2011-11-15 08:45:15 +00:00
2011-10-08 21:36:38 +00:00
});
2011-10-20 16:21:58 +00:00
2011-11-04 13:37:38 +00:00
function updatePage(data){
$.ajax({type: "GET", url: location.href, data: data, dataType: "script"});
2011-10-20 16:21:58 +00:00
}
2011-11-10 21:55:55 +00:00
function showMenu() {
2011-11-15 08:34:30 +00:00
$(this).toggleClass('hover');
2011-11-10 21:55:55 +00:00
}
function resetMenu() {
2011-11-15 08:34:30 +00:00
$(this).removeClass("hover");
2011-11-12 22:30:51 +00:00
}