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

100 lines
2.5 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
//= require jquery.ui.all
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
2012-02-12 21:52:27 +00:00
//= require jquery.endless-scroll
2012-03-15 23:14:39 +00:00
//= require jquery.highlight
2012-02-18 12:43:35 +00:00
//= require bootstrap-modal
2011-11-15 08:45:15 +00:00
//= require modernizr
2012-05-29 12:50:10 +00:00
//= require chosen-jquery
//= require raphael/raphael
2011-11-12 22:30:51 +00:00
//= require branch-graph
2011-10-08 21:36:38 +00:00
//= require_tree .
$(document).ready(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();
});
2011-11-15 08:34:30 +00:00
$(".account-box").mouseenter(showMenu);
$(".account-box").mouseleave(resetMenu);
2011-11-15 08:45:15 +00:00
$("#projects-list .project").live('click', function(e){
if(e.target.nodeName != "A" && e.target.nodeName != "INPUT") {
location.href = $(this).attr("url");
e.stopPropagation();
return false;
}
});
$("#issues-table .issue").live('click', function(e){
if(e.target.nodeName != "A" && e.target.nodeName != "INPUT") {
location.href = $(this).attr("url");
e.stopPropagation();
return false;
}
});
2012-02-27 17:05:27 +00:00
/**
* Focus search field by pressing 's' key
*/
$(document).keypress(function(e) {
if( $(e.target).is(":input") ) return;
switch(e.which) {
case 115: focusSearch();
e.preventDefault();
}
});
2012-06-20 18:29:55 +00:00
/**
* Commit show suppressed diff
*
*/
$(".supp_diff_link").bind("click", function() {
showDiff(this);
2012-06-20 20:08:10 +00:00
});
});
2011-12-20 06:39:14 +00:00
function focusSearch() {
$("#search").focus();
}
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
}
function slugify(text) {
return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
}
2012-04-05 22:00:15 +00:00
function showDiff(link) {
$(link).next('table').show();
$(link).remove();
}
(function($){
var _chosen = $.fn.chosen;
$.fn.extend({
chosen: function(options) {
var default_options = {'search_contains' : 'true'};
$.extend(default_options, options);
return _chosen.apply(this, [default_options]);
}})
})(jQuery);