Skip to content
Snippets Groups Projects
Commit 4ba5c8f9 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Set target blanks on all external links in application forms with js. Make...

Set target blanks on all external links in application forms with js. Make target blank default for all link in TineMCE editor.
parent ccddab37
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
<script src="{% static 'js/apply/file-uploads.js' %}"></script> <script src="{% static 'js/apply/file-uploads.js' %}"></script>
<script src="{% static 'js/apply/tinymce-word-count.js' %}"></script> <script src="{% static 'js/apply/tinymce-word-count.js' %}"></script>
<script src="{% static 'js/apply/submission-form-copy.js' %}"></script> <script src="{% static 'js/apply/submission-form-copy.js' %}"></script>
<script src="{% static 'js/apply/external-link-new-window.js' %}"></script>
{% if not show_all_group_fields %} {% if not show_all_group_fields %}
<script src="{% static 'js/apply/form-group-toggle.js' %}"></script> <script src="{% static 'js/apply/form-group-toggle.js' %}"></script>
{% endif %} {% endif %}
......
...@@ -20,6 +20,7 @@ MCE_ATTRIBUTES = { ...@@ -20,6 +20,7 @@ MCE_ATTRIBUTES = {
], ],
'relative_urls': False, 'relative_urls': False,
'browser_spellcheck': True, 'browser_spellcheck': True,
'default_link_target': '_blank',
} }
MCE_ATTRIBUTES_SHORT = {**MCE_ATTRIBUTES, **{'height': 180}} MCE_ATTRIBUTES_SHORT = {**MCE_ATTRIBUTES, **{'height': 180}}
......
...@@ -494,7 +494,7 @@ SOCIAL_AUTH_PIPELINE = ( ...@@ -494,7 +494,7 @@ SOCIAL_AUTH_PIPELINE = (
# Bleach Settings # Bleach Settings
BLEACH_ALLOWED_TAGS = ['a', 'b', 'big', 'blockquote', 'br', 'cite', 'code', 'col', 'colgroup', 'dd', 'del', 'dl', 'dt', 'em', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'ins', 'li', 'ol', 'p', 'pre', 'small', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'ul'] BLEACH_ALLOWED_TAGS = ['a', 'b', 'big', 'blockquote', 'br', 'cite', 'code', 'col', 'colgroup', 'dd', 'del', 'dl', 'dt', 'em', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'i', 'ins', 'li', 'ol', 'p', 'pre', 'small', 'span', 'strong', 'sub', 'sup', 'table', 'tbody', 'td', 'th', 'thead', 'tr', 'ul']
BLEACH_ALLOWED_ATTRIBUTES = ['class', 'colspan', 'href', 'rowspan', 'title', 'width'] BLEACH_ALLOWED_ATTRIBUTES = ['class', 'colspan', 'href', 'rowspan', 'target', 'title', 'width']
BLEACH_ALLOWED_STYLES = [] BLEACH_ALLOWED_STYLES = []
......
(function ($) {
'use strict';
// Make external links on application forms open in a new window/tab.
$('.application-form').find("a[href^='http']").attr('target', '_blank');
})(jQuery);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment