From 55792d5528717845bdd129cef508602d6bd3808a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 7 Jun 2019 09:51:26 +0200 Subject: fix css issue --- view/tpl/follow.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/follow.tpl b/view/tpl/follow.tpl index bccb25068..da472fa9b 100755 --- a/view/tpl/follow.tpl +++ b/view/tpl/follow.tpl @@ -4,7 +4,7 @@
- +
-- cgit v1.2.3 From e81e264988c8f01ca11474525162398a865e5282 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 10 Jun 2019 22:39:53 +0200 Subject: remove sizeRangeSuffixes. they can cause issues with profile photos. --- view/js/main.js | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index e91bd914d..2eea7543d 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1077,17 +1077,9 @@ function justifyPhotos(id) { justifiedGalleryActive = true; $('#' + id).show(); $('#' + id).justifiedGallery({ - selector: 'a, div:not(.spinner, #page-end)', + selector: 'a, div:not(#page-end)', margins: 3, - border: 0, - sizeRangeSuffixes: { - 'lt100': '-3', - 'lt240': '-3', - 'lt320': '-3', - 'lt500': '-2', - 'lt640': '-2', - 'lt1024': '-1' - } + border: 0 }).on('jg.complete', function(e){ justifiedGalleryActive = false; }); } -- cgit v1.2.3 From 75dedb3345a30f0b94a7225a7ee143d61c993024 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Fri, 14 Jun 2019 20:57:28 +0200 Subject: Add signature when send private message --- view/tpl/prv_message.tpl | 1 + 1 file changed, 1 insertion(+) (limited to 'view') diff --git a/view/tpl/prv_message.tpl b/view/tpl/prv_message.tpl index 59472f7d4..b8c81539d 100755 --- a/view/tpl/prv_message.tpl +++ b/view/tpl/prv_message.tpl @@ -11,6 +11,7 @@ + {{if $new}}
-- cgit v1.2.3 From 5315d8fe3f502be7e31a273c4d8006cea113f259 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Fri, 14 Jun 2019 20:59:07 +0200 Subject: Add signature when private message displaying --- view/tpl/mail_conv.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/mail_conv.tpl b/view/tpl/mail_conv.tpl index cd810e999..b0497fe99 100755 --- a/view/tpl/mail_conv.tpl +++ b/view/tpl/mail_conv.tpl @@ -1,4 +1,4 @@ -
+
{{$mail.from_name}} -- cgit v1.2.3 From c9604eaabf400ff60a7be24214ca4945561e6ec2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 17 Jun 2019 10:07:00 +0200 Subject: revisit mod cal --- view/tpl/cal_calendar.tpl | 105 ++++++++++++++++++++++++++++++++++++++++++++++ view/tpl/cal_event.tpl | 14 +++++++ view/tpl/event_cal.tpl | 14 ------- 3 files changed, 119 insertions(+), 14 deletions(-) create mode 100755 view/tpl/cal_calendar.tpl create mode 100755 view/tpl/cal_event.tpl delete mode 100755 view/tpl/event_cal.tpl (limited to 'view') diff --git a/view/tpl/cal_calendar.tpl b/view/tpl/cal_calendar.tpl new file mode 100755 index 000000000..93ebaa235 --- /dev/null +++ b/view/tpl/cal_calendar.tpl @@ -0,0 +1,105 @@ + + +
+
+
+
+ + + +
+ + +
+

+
+
+
+
+
+
diff --git a/view/tpl/cal_event.tpl b/view/tpl/cal_event.tpl new file mode 100755 index 000000000..d7662786b --- /dev/null +++ b/view/tpl/cal_event.tpl @@ -0,0 +1,14 @@ +{{foreach $events as $event}} +
+
+
+ {{if $event.item.author.xchan_name}}{{$event.item.author.xchan_name}}{{/if}} +
+ {{$event.html}} +
+ {{if $event.item.plink}}{{/if}} +
+
+
+
+{{/foreach}} diff --git a/view/tpl/event_cal.tpl b/view/tpl/event_cal.tpl deleted file mode 100755 index d7662786b..000000000 --- a/view/tpl/event_cal.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{{foreach $events as $event}} -
-
-
- {{if $event.item.author.xchan_name}}{{$event.item.author.xchan_name}}{{/if}} -
- {{$event.html}} -
- {{if $event.item.plink}}{{/if}} -
-
-
-
-{{/foreach}} -- cgit v1.2.3 From 9507f191b02c05d4cbbbe0ab3072f5a8211b1312 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 17 Jun 2019 10:16:49 +0200 Subject: disable events module. it is now disfunctional --- view/pdl/mod_events.pdl | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 view/pdl/mod_events.pdl (limited to 'view') diff --git a/view/pdl/mod_events.pdl b/view/pdl/mod_events.pdl deleted file mode 100644 index e9a91e219..000000000 --- a/view/pdl/mod_events.pdl +++ /dev/null @@ -1,8 +0,0 @@ -[region=aside] -[widget=eventstools][/widget] -[widget=tasklist][/widget] -[/region] -[region=right_aside] -[widget=notifications][/widget] -[widget=newmember][/widget] -[/region] -- cgit v1.2.3