mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 23:13:25 +00:00
[manual] Fetch Handlebars templates using Ajax
...rather than embedding them into index.html. This is only acceptable for dev, but the next commit adds an alternative mechanism for prod. There isn't actually a manual deployment step here. However, this commit won't work on staging / prod without the next one (since we don't serve zephyr/static/templates in prod). (imported from commit dce7ddfe89e07afc3a96699bb972fd124335aa05)
This commit is contained in:
@@ -11,7 +11,7 @@ function update_subscription_checkboxes() {
|
||||
$.each(subs.subscribed_streams(), function (index, value) {
|
||||
streams.push({name: value, invite_only: subs.get_invite_only(value)});
|
||||
});
|
||||
$('#streams_to_add').html(templates.invite_subscription({streams: streams}));
|
||||
$('#streams_to_add').html(templates.render('invite_subscription', {streams: streams}));
|
||||
}
|
||||
|
||||
function reset_error_messages() {
|
||||
|
||||
Reference in New Issue
Block a user