-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kosuke Tanabe
committed
Jan 8, 2012
1 parent
eb7e32d
commit 0185da1
Showing
490 changed files
with
20,981 additions
and
24,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
--colour -fs | ||
--colour |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
//= require jquery | ||
//= require jquery-ui | ||
//= require jquery.colorbox | ||
//= require jquery_ujs | ||
//= require jquery.highlight-3 | ||
//= require jquery.hotkeys | ||
//= require jquery.cookie | ||
//= require fg.menu | ||
//= require fg.menu.enju | ||
//= require pagination | ||
//= require select_locale | ||
//= require portlets | ||
//= require tab_view | ||
//= require event_calendar | ||
//= require rails.validations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Place all the behaviors and hooks related to the matching controller here. | ||
# All this logic will automatically be available in application.js. | ||
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Smart event highlighting | ||
* Handles when events span rows, or don't have a background color | ||
*/ | ||
jQuery(document).ready(function($) { | ||
var highlight_color = "#2EAC6A"; | ||
|
||
// highlight events that have a background color | ||
$(".ec-event-bg").live("mouseover", function() { | ||
event_id = $(this).attr("data-event-id"); | ||
event_class_name = $(this).attr("data-event-class"); | ||
$(".ec-"+event_class_name+"-"+event_id).css("background-color", highlight_color); | ||
}); | ||
$(".ec-event-bg").live("mouseout", function() { | ||
event_id = $(this).attr("data-event-id"); | ||
event_class_name = $(this).attr("data-event-class"); | ||
event_color = $(this).attr("data-color"); | ||
$(".ec-"+event_class_name+"-"+event_id).css("background-color", event_color); | ||
}); | ||
|
||
// highlight events that don't have a background color | ||
$(".ec-event-no-bg").live("mouseover", function() { | ||
ele = $(this); | ||
ele.css("color", "white"); | ||
ele.find("a").css("color", "white"); | ||
ele.find(".ec-bullet").css("background-color", "white"); | ||
ele.css("background-color", highlight_color); | ||
}); | ||
$(".ec-event-no-bg").live("mouseout", function() { | ||
ele = $(this); | ||
event_color = $(this).attr("data-color"); | ||
ele.css("color", event_color); | ||
ele.find("a").css("color", event_color); | ||
ele.find(".ec-bullet").css("background-color", event_color); | ||
ele.css("background-color", "transparent"); | ||
}); | ||
}); |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.