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-10-08 23:36:38 +02:00
|
|
|
//= require_tree .
|
|
|
|
|
|
|
|
$(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
|
|
|
|
|
|
|
$(".account-box").mouseenter(showMenu);
|
|
|
|
$(".account-box").mouseleave(resetMenu);
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
});
|
2011-10-20 18:21:58 +02:00
|
|
|
|
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() {
|
|
|
|
$(this).toggleClass('hover');
|
|
|
|
}
|
|
|
|
|
|
|
|
function resetMenu() {
|
|
|
|
$(this).removeClass("hover");
|
|
|
|
}
|