deleted: view/theme/smoothly/events_reminder.tpl
This commit is contained in:
parent
0e2fdee20e
commit
7e16909d0e
|
@ -13,7 +13,6 @@
|
||||||
<input type="hidden" name="coord" id="jot-coord" value="" />
|
<input type="hidden" name="coord" id="jot-coord" value="" />
|
||||||
<input type="hidden" name="post_id" value="$post_id" />
|
<input type="hidden" name="post_id" value="$post_id" />
|
||||||
<input type="hidden" name="preview" id="jot-preview" value="0" />
|
<input type="hidden" name="preview" id="jot-preview" value="0" />
|
||||||
<input type="hidden" name="post_id_random" value="$rand_num" />
|
|
||||||
<input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none">
|
<input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none">
|
||||||
<div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div>
|
<div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div>
|
||||||
<div id="character-counter" class="grey"></div>
|
<div id="character-counter" class="grey"></div>
|
||||||
|
|
|
@ -1,40 +0,0 @@
|
||||||
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
|
|
||||||
<script language="javascript" type="text/javascript"
|
|
||||||
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
|
|
||||||
<script>
|
|
||||||
// start calendar from yesterday
|
|
||||||
var yesterday= new Date()
|
|
||||||
yesterday.setDate(yesterday.getDate()-1)
|
|
||||||
|
|
||||||
function showEvent(eventid) {
|
|
||||||
$.get(
|
|
||||||
'$baseurl/events/?id='+eventid,
|
|
||||||
function(data){
|
|
||||||
$.fancybox(data);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$(document).ready(function() {
|
|
||||||
$('#events-reminder').fullCalendar({
|
|
||||||
firstDay: yesterday.getDay(),
|
|
||||||
year: yesterday.getFullYear(),
|
|
||||||
month: yesterday.getMonth(),
|
|
||||||
date: yesterday.getDate(),
|
|
||||||
events: '$baseurl/events/json/',
|
|
||||||
header: {
|
|
||||||
left: '',
|
|
||||||
center: '',
|
|
||||||
right: ''
|
|
||||||
},
|
|
||||||
timeFormat: 'H(:mm)',
|
|
||||||
defaultView: 'basicWeek',
|
|
||||||
height: 50,
|
|
||||||
eventClick: function(calEvent, jsEvent, view) {
|
|
||||||
showEvent(calEvent.id);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<br />
|
|
||||||
<div id="events-reminder"></div>
|
|
Loading…
Reference in New Issue
Block a user