2011-10-08 23:36:38 +02: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 19:42:24 +02:00
|
|
|
//= require jquery-ui
|
2011-10-08 23:36:38 +02:00
|
|
|
//= require jquery_ujs
|
2011-10-26 19:42:24 +02:00
|
|
|
//= require jquery.ui.selectmenu
|
2011-11-04 09:11:14 +01:00
|
|
|
//= require jquery.tagify
|
2011-10-26 19:42:24 +02:00
|
|
|
//= require jquery.cookie
|
2012-02-12 22:52:27 +01:00
|
|
|
//= require jquery.endless-scroll
|
2012-03-16 00:14:39 +01:00
|
|
|
//= require jquery.highlight
|
2012-02-18 13:43:35 +01:00
|
|
|
//= require bootstrap-modal
|
2011-11-15 09:45:15 +01:00
|
|
|
//= require modernizr
|
|
|
|
//= require chosen
|
2011-11-12 23:30:51 +01:00
|
|
|
//= require raphael
|
|
|
|
//= require branch-graph
|
2011-10-08 23:36:38 +02:00
|
|
|
//= require_tree .
|
|
|
|
|
2011-12-20 07:24:14 +01:00
|
|
|
$(document).ready(function(){
|
2011-10-26 19:17:46 +02:00
|
|
|
$(".one_click_select").live("click", function(){
|
2011-10-08 23:36:38 +02:00
|
|
|
$(this).select();
|
|
|
|
});
|
|
|
|
|
2011-11-15 09:34:30 +01:00
|
|
|
$(".account-box").mouseenter(showMenu);
|
|
|
|
$(".account-box").mouseleave(resetMenu);
|
2011-11-15 09:45:15 +01:00
|
|
|
|
2011-12-20 07:24:14 +01: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 18:05:27 +01:00
|
|
|
/**
|
|
|
|
* Focus search field by pressing 's' key
|
|
|
|
*/
|
2011-12-20 07:24:14 +01:00
|
|
|
$(document).keypress(function(e) {
|
|
|
|
if( $(e.target).is(":input") ) return;
|
|
|
|
switch(e.which) {
|
|
|
|
case 115: focusSearch();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
2011-12-20 07:49:14 +01:00
|
|
|
});
|
2011-12-20 07:39:14 +01:00
|
|
|
|
2011-12-20 07:24:14 +01:00
|
|
|
function focusSearch() {
|
|
|
|
$("#search").focus();
|
|
|
|
}
|
|
|
|
|
2011-11-04 14:37:38 +01:00
|
|
|
function updatePage(data){
|
|
|
|
$.ajax({type: "GET", url: location.href, data: data, dataType: "script"});
|
2011-10-20 18:21:58 +02:00
|
|
|
}
|
2011-11-10 22:55:55 +01:00
|
|
|
|
|
|
|
function showMenu() {
|
2011-11-15 09:34:30 +01:00
|
|
|
$(this).toggleClass('hover');
|
2011-11-10 22:55:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function resetMenu() {
|
2011-11-15 09:34:30 +01:00
|
|
|
$(this).removeClass("hover");
|
2011-11-12 23:30:51 +01:00
|
|
|
}
|
2012-03-26 20:41:58 +02:00
|
|
|
|
|
|
|
function slugify(text) {
|
|
|
|
return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
|
|
|
|
}
|
2012-04-06 00:00:15 +02:00
|
|
|
|
|
|
|
function showDiff(link) {
|
|
|
|
$(link).next('table').show();
|
|
|
|
$(link).remove();
|
|
|
|
}
|