Skip to content

Commit 8eaafc4

Browse files
committed
Release 0.0.19-accelo.3
Fix (based on angular-ui#230) - Only save editor when editor is marked as stale (like done in debounce, which should really be using the same code) - Listen to keyup for new keystrokes that are sometimes missed by changes event - Do not file events when updating model
1 parent 4e7180a commit 8eaafc4

File tree

5 files changed

+41
-5
lines changed

5 files changed

+41
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.0.19-accelo.3
2+
3+
Fix (based on https://github.com/angular-ui/ui-tinymce/pull/230)
4+
5+
- Only save editor when editor is marked as stale (like done in debounce, which should really be using the same code)
6+
- Listen to keyup for new keystrokes that are sometimes missed by changes event
7+
- Do not file events when updating model
8+
19
## 0.0.19-accelo.2
210

311
Improvement

dist/tinymce.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-ui-tinymce",
3-
"version": "0.0.19-accelo.2",
3+
"version": "0.0.19-accelo.3",
44
"descriptin": "This directive allows you to add a tinymce to your form elements.",
55
"author": "https://github.com/angular-ui/ui-tinymce/graphs/contributors",
66
"license": "MIT",

src/tinymce.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ angular.module('ui.tinymce', [])
2626
}, tinyInstance,
2727
updateView = function(editor) {
2828
// don't jump into any digest if the content is the same
29-
var content = editor.getContent({format: options.format}).trim();
29+
var content = editor.getContent({format: options.format, no_events: true}).trim();
3030
if (lastSeenContent === content) {
3131
return;
3232
}
@@ -70,8 +70,8 @@ angular.module('ui.tinymce', [])
7070
return (function(debouncedEditor) {
7171
if (debouncedEditor.isDirty()) {
7272
debouncedEditor.save();
73-
updateView(debouncedEditor);
7473
}
74+
updateView(debouncedEditor);
7575
})(ed);
7676
}, debouncedUpdateDelay);
7777
};
@@ -92,11 +92,15 @@ angular.module('ui.tinymce', [])
9292

9393
// Update model when:
9494
// - a button has been clicked [ExecCommand]
95+
// - the editor content has been with keystroke [KeyUp]
9596
// - the editor content has been modified [change]
9697
// - the node has changed [NodeChange]
9798
// - an object has been resized (table, image) [ObjectResized]
98-
ed.on('ExecCommand change NodeChange ObjectResized', function() {
99+
ed.on('ExecCommand change NodeChange ObjectResized KeyUp', function() {
99100
if (!options.debounce) {
101+
if (ed.isDirty()) {
102+
ed.save();
103+
}
100104
updateView(ed);
101105
return;
102106
}

test/tinymce.spec.js

+24
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,30 @@ describe('uiTinymce', function () {
7474
expect(directiveElement.controller('ngModel').$touched).toBe(true);
7575
});
7676

77+
// TODO: get these 2 tests working - https://github.com/angular-ui/ui-tinymce/pull/230/files
78+
xit('should not trigger event on KeyUp', function() {
79+
compile();
80+
81+
var editor = tinymce.editors[1];
82+
spyOn(editor, 'getContent').and.callThrough();
83+
editor.fire('KeyUp');
84+
$timeout.flush();
85+
86+
expect(editor.getContent.calls.count()).toEqual(1);
87+
expect(editor.getContent.calls.argsFor(0)[0].no_events).toBe(true);
88+
});
89+
xit('should not trigger event on ExecCommand', function() {
90+
compile();
91+
92+
var editor = tinymce.editors[1];
93+
spyOn(editor, 'getContent').and.callThrough();
94+
editor.fire('ExecCommand');
95+
$timeout.flush();
96+
97+
expect(editor.getContent.calls.count()).toEqual(1);
98+
expect(editor.getContent.calls.argsFor(0)[0].no_events).toBe(true);
99+
});
100+
77101
it('should remove tinymce instance on $scope destruction', function() {
78102
compile();
79103
expect(tinymce.get(element.attr('id'))).toBeDefined();

0 commit comments

Comments
 (0)