You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
496 B

  1. {% include "templates/includes/post_editor.html" %}
  2. <script type="text/javascript" src="/assets/js/canvasResize.min.js"></script>
  3. <script>
  4. $(function() {
  5. website.bind_add_post();
  6. {%- if view.name == "edit" -%}
  7. website.bind_save_post();
  8. {% if post -%} website.post = "{{ post.name }}"; {%- endif %}
  9. {%- endif -%}
  10. {%- if group.group_type == "Events" -%}
  11. website.setup_event_editor();
  12. {%- elif group.group_type == "Tasks" -%}
  13. website.setup_tasks_editor();
  14. {%- endif -%}
  15. });
  16. </script>