diff options
author | Max Kostikov <max@kostikov.co> | 2019-04-19 21:26:48 +0200 |
---|---|---|
committer | Max Kostikov <max@kostikov.co> | 2019-04-19 21:26:48 +0200 |
commit | a8fc70a5b92230284084a122f9163c759acd84ee (patch) | |
tree | 1753f73cbc35662668aa7e81ccfefe6d4b3c723e /view/tpl | |
parent | 0212de68a46241594372a172d3aeccaa51c150db (diff) | |
parent | c3740728221197243821d31d655126291048a091 (diff) | |
download | volse-hubzilla-a8fc70a5b92230284084a122f9163c759acd84ee.tar.gz volse-hubzilla-a8fc70a5b92230284084a122f9163c759acd84ee.tar.bz2 volse-hubzilla-a8fc70a5b92230284084a122f9163c759acd84ee.zip |
Merge branch 'dev' into 'dev'
Fix update button in cdav_calendar.tpl
See merge request hubzilla/core!1602
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/cdav_calendar.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/cdav_calendar.tpl b/view/tpl/cdav_calendar.tpl index d9fd62eab..cf4542bbe 100644 --- a/view/tpl/cdav_calendar.tpl +++ b/view/tpl/cdav_calendar.tpl @@ -90,7 +90,7 @@ $(document).ready(function() { $('#id_dtend').val(dtend.toUTCString()); $('#id_description').val(event.extendedProps.description); $('#id_location').val(event.extendedProps.location); - $('#event_submit').val('update_event').html('Update'); + $('#event_submit').val('update_event').html('{{$update}}'); if(event.extendedProps.rw) { $('#event_delete').show(); $('#event_submit').show(); @@ -368,7 +368,7 @@ function on_more() { <div class="form-group"> <div class="pull-right"> <button id="event_more" type="button" class="btn btn-outline-secondary btn-sm"><i class="fa fa-caret-down"></i> {{$more}}</button> - <button id="event_submit" type="button" value="" class="btn btn-primary btn-sm">{{$update}}</button> + <button id="event_submit" type="button" value="" class="btn btn-primary btn-sm"></button> </div> <div> |