forked from fullcalendar/fullcalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merged refactor148, resolved conflicts
- Loading branch information
Showing
136 changed files
with
5,079 additions
and
5,275 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
var jQuery; |
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
28 changes: 7 additions & 21 deletions
28
examples/external-dragging.html → demos/external-dragging.html
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,67 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | ||
<html> | ||
<head> | ||
<script type='text/javascript' src='../src/_loader.js'></script> | ||
<script type='text/javascript' src='../src/gcal/_loader.js'></script> | ||
<!--[[ | ||
<link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.css' /> | ||
<script type='text/javascript' src='../jquery/jquery.js'></script> | ||
<script type='text/javascript' src='../jquery/jquery-ui.js'></script> | ||
<script type='text/javascript' src='../fullcalendar/fullcalendar.min.js'></script> | ||
<script type='text/javascript' src='../fullcalendar/gcal.js'></script> | ||
]]--> | ||
<script type='text/javascript'> | ||
|
||
$(document).ready(function() { | ||
|
||
$('#calendar').fullCalendar({ | ||
|
||
// US Holidays | ||
events: $.fullCalendar.gcalFeed('http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic'), | ||
|
||
eventClick: function(event) { | ||
// opens events in a popup window | ||
window.open(event.url, 'gcalevent', 'width=700,height=600'); | ||
return false; | ||
}, | ||
|
||
loading: function(bool) { | ||
if (bool) { | ||
$('#loading').show(); | ||
}else{ | ||
$('#loading').hide(); | ||
} | ||
} | ||
|
||
}); | ||
|
||
}); | ||
|
||
</script> | ||
<style type='text/css'> | ||
|
||
body { | ||
margin-top: 40px; | ||
text-align: center; | ||
font-size: 14px; | ||
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif; | ||
} | ||
|
||
#loading { | ||
position: absolute; | ||
top: 5px; | ||
right: 5px; | ||
} | ||
|
||
#calendar { | ||
width: 900px; | ||
margin: 0 auto; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<div id='loading' style='display:none'>loading...</div> | ||
<div id='calendar'></div> | ||
</body> | ||
</html> |
File renamed without changes.
Oops, something went wrong.