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
|
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();
|
|
|
|
});
|
|
|
|
|
|
|
|
$('select#branch').selectmenu({style:'popup', width:200});
|
|
|
|
$('select#tag').selectmenu({style:'popup', width:200});
|
2011-11-10 22:55:55 +01:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$(document).keypress(function(e) {
|
|
|
|
if( $(e.target).is(":input") ) return;
|
|
|
|
switch(e.which) {
|
|
|
|
case 115: focusSearch();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
2011-12-20 07:39:14 +01:00
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
function taggifyForm(){
|
|
|
|
var tag_field = $('#tag_field').tagify();
|
|
|
|
|
|
|
|
tag_field.tagify('inputField').autocomplete({
|
|
|
|
source: '/tags.json'
|
|
|
|
});
|
|
|
|
|
|
|
|
$('form').submit( function() {
|
|
|
|
var tag_field = $('#tag_field')
|
|
|
|
tag_field.val( tag_field.tagify('serialize') );
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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-01-11 23:26:01 +01:00
|
|
|
|
|
|
|
|