Skip to content

Commit

Permalink
Version 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yuku committed Jul 11, 2017
1 parent a27db55 commit 77cd4e0
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This project adheres to [Semantic Versioning](http://semver.org/) by version 1.0

This change log adheres to [keepachangelog.com](http://keepachangelog.com).

## [1.8.2] - 2017-07-11
### Fixed
- Fix for multiple ckeditors ([#309](https://github.com/yuku-t/jquery-textcomplete/pull/309))

## [1.8.1] - 2017-06-27
### Fixed
- Attach textcomplete to the active CKEditor only ([#294](https://github.com/yuku-t/jquery-textcomplete/pull/294))
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery-textcomplete",
"version": "1.8.1",
"version": "1.8.2",
"main": "dist/jquery.textcomplete.js",
"dependencies": {
"jquery": ">=1.7.0"
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.textcomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ if (typeof jQuery === 'undefined') {
CKEDITOR.on("instanceReady", function(event) { //For multiple ckeditors on one page: this needs to be executed each time a ckeditor-instance is ready.

if($.inArray(event.editor.id, initializedEditors) == -1) { //For multiple ckeditors on one page: focus-eventhandler should only be added once for every editor.

initializedEditors.push(event.editor.id);

event.editor.on("focus", function(event2) {
//replace the element with the Iframe element and flag it as CKEditor
self.$el = $(event.editor.editable().$);
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.textcomplete.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jquery.textcomplete.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Yuku Takahashi <[email protected]>",
"name": "jquery-textcomplete",
"main": "dist/jquery.textcomplete",
"version": "1.8.1",
"version": "1.8.2",
"homepage": "http://yuku-t.com/jquery-textcomplete",
"repository": {
"type": "git",
Expand Down

0 comments on commit 77cd4e0

Please sign in to comment.