Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Tinymce 4.6.1 #764

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -39,6 +39,9 @@ New features:
- Add option for contextPath - objects with this path will not be selectable. This prevents the object where the relation is set on to from being selected and self-referenced.
[thet]

- Bring in TinyMCE 4.6.1
[frapell]

Bug fixes:

- Fixed path to tooltip less files.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -23,7 +23,7 @@
"requirejs-text": "2.0.15",
"select2": "3.5.4",
"selectivizr": "1.0.2",
"tinymce-builded": "4.4.3"
"tinymce-builded": "4.6.1"
},
"devDependencies": {
"expect": "0.3.1",
Expand Down
6 changes: 3 additions & 3 deletions mockup/js/config.js
Expand Up @@ -9,11 +9,11 @@
var tinymcePlugins = [
'advlist', 'anchor', 'autolink', 'autoresize', 'autosave', 'bbcode',
'charmap', 'code', 'colorpicker', 'contextmenu', 'directionality',
'emoticons', 'fullpage', 'fullscreen', 'hr', 'image', 'importcss',
'insertdatetime', 'layer', 'legacyoutput', 'link', 'lists', 'media',
'emoticons', 'fullpage', 'fullscreen', 'help', 'hr', 'image', 'importcss',
'insertdatetime', 'legacyoutput', 'link', 'lists', 'media',
'nonbreaking', 'noneditable', 'pagebreak', 'paste', 'preview', 'print',
'save', 'searchreplace', 'spellchecker', 'tabfocus', 'table', 'template',
'textcolor', 'textpattern', 'visualblocks', 'visualchars', 'wordcount',
'textcolor', 'textpattern', 'toc', 'visualblocks', 'visualchars', 'wordcount',
'compat3x'
];

Expand Down
3 changes: 1 addition & 2 deletions mockup/patterns/tinymce/less/pattern.tinymce.less
@@ -1,5 +1,4 @@
@import (less) "@{bowerPath}/tinymce-builded/js/tinymce/skins/lightgray/skin.less";
@import (less) "@{bowerPath}/tinymce-builded/js/tinymce/skins/lightgray/Content.Objects.less";
@import (less) "@{bowerPath}/tinymce-builded/js/tinymce/skins/lightgray/skin.min.css";
@import (inline) "@{bowerPath}/tinymce-builded/js/tinymce/plugins/visualblocks/css/visualblocks.css";
@import "@{mockupPath}/modal/pattern.modal.less";
@import "@{mockupPath}/autotoc/pattern.autotoc.less";
Expand Down
3 changes: 2 additions & 1 deletion mockup/patterns/tinymce/pattern.js
Expand Up @@ -81,11 +81,11 @@ define([
'tinymce-emoticons',
'tinymce-fullpage',
'tinymce-fullscreen',
'tinymce-help',
'tinymce-hr',
'tinymce-image',
'tinymce-importcss',
'tinymce-insertdatetime',
'tinymce-layer',
'tinymce-legacyoutput',
'tinymce-link',
'tinymce-lists',
Expand All @@ -104,6 +104,7 @@ define([
'tinymce-template',
'tinymce-textcolor',
'tinymce-textpattern',
'tinymce-toc',
'tinymce-visualblocks',
'tinymce-visualchars',
'tinymce-wordcount',
Expand Down