-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.1.3 Various improvements on the interface, kanban report and calendar
- Loading branch information
Showing
13 changed files
with
84 additions
and
77 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
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
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
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
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
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,24 @@ | ||
<link rel="stylesheet" href="${resource(dir: 'css', file: 'ui.achtung-min.css')}"/> | ||
<script type="text/javascript" src="${resource(dir: 'js', file: 'ui.achtung-min.js')}"></script> | ||
|
||
%{--<script type="text/javascript">--}% | ||
%{--jQuery.achtung({message: '${message}', timeout: 5});--}% | ||
%{--</script>--}% | ||
<script type="text/javascript"> | ||
// var myCalendar = jQuery('#calendar'); | ||
var myCalendar = document.getElementById('calendar'); | ||
var calendar = FullCalendar.Calendar(myCalendar) | ||
// myCalendar.fullCalendar(); | ||
var myEvent = { | ||
title:"my new event", | ||
allDay: true, | ||
start: new Date(), | ||
end: new Date() | ||
}; | ||
//jQuery('#calendar').fullCalendar('renderEvent', myEvent); | ||
// calendar.fullCalendar( 'renderEvent', myEvent); | ||
calendar.addEvent(myEvent) | ||
</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
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,13 @@ | ||
|
||
|
||
.fc-event-container | ||
.fc-content | ||
.fc-title { | ||
display: inline !important;; | ||
} | ||
.fc-event-container | ||
.fc-content .fc-time { | ||
display: inline !important;; | ||
font-weight: bold !important; | ||
text-decoration: underline; | ||
} |
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
Oops, something went wrong.