Skip to content

Commit 750e602

Browse files
committed
0.8.1 update - Fixed issue #89
1 parent 99de29a commit 750e602

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Feel free to edit `assets/stylesheets/issue_dynamic_edit.css` to update the look
3737

3838
### 🆕 Changelog
3939

40+
* **v 0.8.1** : fixed Github issue #89 : Issue version check (AJAX call) may give glitch while editing text + disable global event listener on ajaxSend
4041
* **v 0.8.0** : Complete rework. Compatible with last Redmine version. New settings added : `_CONF_CHECK_ISSUE_UPDATE_CONFLICT` (#70 #88). Removed external lib (FontAwesome) (#74). Mobile style added (#87). Print style added (#84). Bug fix (#79, #85)
4142
* **v 0.7.2** : New settings added into config file (`_CONF_DISPLAY_EDIT_ICON` and `_CONF_LISTENER_TYPE_ICON`) see Configuration part for more info ; new event `none` for `_CONF_LISTENER_TYPE_VALUE` disabling listener on value ; css fix
4243
* **v 0.7.1** : Fixed incorrect DOM structure if user has read only access to the issue (#61 #64)

assets/javascripts/issue_dynamic_edit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ let checkVersion = function(callback){
206206
type: 'GET',
207207
url: LOCATION_HREF,
208208
crossDomain: true,
209-
async: false,
209+
global: false,
210210
success: function(msg) {
211211
let parsed = $.parseHTML(msg);
212212
let current_version = $(parsed).find('#issue_lock_version').val();

init.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
name 'Redmine Dynamic edit Issue plugin'
77
author 'Hugo Zilliox'
88
description 'Allows users to dynamically update issue attributes in detailed view without refreshing the page (JIRA style)'
9-
version '0.8.0'
9+
version '0.8.1'
1010
url 'https://github.com/ilogeek/redmine_issue_dynamic_edit'
1111
author_url 'https://hzilliox.fr'
1212
end

0 commit comments

Comments
 (0)