aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-07-25 22:55:43 -0700
committerfriendica <info@friendica.com>2012-07-25 22:55:43 -0700
commit7bdbb8331c8341e6c3ea0b463f0a742d06972245 (patch)
treeaefe7364c818bd29d24800b2ce28d894f946f85d /view
parent21b3dc9c27be50e73944eaec97001ad1279400f1 (diff)
downloadvolse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.tar.gz
volse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.tar.bz2
volse-hubzilla-7bdbb8331c8341e6c3ea0b463f0a742d06972245.zip
picking up the page load times a bit
Diffstat (limited to 'view')
-rw-r--r--view/acl_selector.tpl14
-rw-r--r--view/jot-header.tpl1
-rw-r--r--view/theme/slackr/birthdays_reminder.tpl.newlayout (renamed from view/theme/slackr/birthdays_reminder.tpl)0
-rw-r--r--view/theme/slackr/events_reminder.tpl39
4 files changed, 9 insertions, 45 deletions
diff --git a/view/acl_selector.tpl b/view/acl_selector.tpl
index 655ea8980..e5231b0f8 100644
--- a/view/acl_selector.tpl
+++ b/view/acl_selector.tpl
@@ -16,11 +16,13 @@
<script>
$(document).ready(function() {
- if(typeof acl=="undefined"){
- acl = new ACL(
- baseurl+"/acl",
- [ $allowcid,$allowgid,$denycid,$denygid ]
- );
- }
+ setTimeout( function () {
+ if(typeof acl=="undefined"){
+ acl = new ACL(
+ baseurl+"/acl",
+ [ $allowcid,$allowgid,$denycid,$denygid ]
+ );
+ }
+ }, 5000 );
});
</script>
diff --git a/view/jot-header.tpl b/view/jot-header.tpl
index 64bcf27ca..f777e997f 100644
--- a/view/jot-header.tpl
+++ b/view/jot-header.tpl
@@ -103,6 +103,7 @@ function initEditor(cb){
}
});
+
editor = true;
// setup acl popup
$("a#jot-perms-icon").fancybox({
diff --git a/view/theme/slackr/birthdays_reminder.tpl b/view/theme/slackr/birthdays_reminder.tpl.newlayout
index 1dc65295a..1dc65295a 100644
--- a/view/theme/slackr/birthdays_reminder.tpl
+++ b/view/theme/slackr/birthdays_reminder.tpl.newlayout
diff --git a/view/theme/slackr/events_reminder.tpl b/view/theme/slackr/events_reminder.tpl
deleted file mode 100644
index bd1a57d18..000000000
--- a/view/theme/slackr/events_reminder.tpl
+++ /dev/null
@@ -1,39 +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: 'HH(:mm)',
- defaultView: 'basicWeek',
- height: 50,
- eventClick: function(calEvent, jsEvent, view) {
- showEvent(calEvent.id);
- }
- });
- });
-</script>
-<div id="events-reminder" class="$classtoday"></div>
-<br>