From bab8cf362cf8f9e8ee97740cc6773cb032c7a6da Mon Sep 17 00:00:00 2001 From: Hugo Date: Wed, 10 Jan 2018 22:06:12 +0100 Subject: [PATCH] Version and README updated --- README.md | 6 ++++++ assets/javascripts/issue_dynamic_edit.js | 2 +- init.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5a06d67..f738908 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ Add new elements on detailed issue page to dynamically update issue's title, status, assignee, priority, start and due dates, ratio and estimated time fields, directly in the details block of the issue without any page refresh (JIRA style). +### 🔴 What info should you provide when opening an issue +>This plugin use JS a lot. Could you then please check your JS console from your web browser ( [HowTo](https://webmasters.stackexchange.com/a/77337) ) and try again your issue. You'll see some information about what goes wrong. +> +>Could you copy / paste it in your issue and expand all possible object (error data for example) so we can look if there's a problem with the ajax call the plugin performs to update the issue or if there's any JS error. + ### Example ![Gif that represents dynamic edition of field from the detailled issue's view](/doc/edit.gif) @@ -19,6 +24,7 @@ This plugin uses [FontAwesome icons](http://fontawesome.io/) ### Changelog +* **v 0.5.0** : fixed Github issue #18 : textarea fixed (jstoolbar or ckeditor) * **v 0.4.9** : fixed Github issue #17 : Datepicker fallback added for date fields * **v 0.4.8** : fixed Github issues #15 and #16 * **v 0.4.7** : if error on dynamic update, put back old values in details block (fixed Github issue #8) diff --git a/assets/javascripts/issue_dynamic_edit.js b/assets/javascripts/issue_dynamic_edit.js index 55ac8a7..ddb86d1 100644 --- a/assets/javascripts/issue_dynamic_edit.js +++ b/assets/javascripts/issue_dynamic_edit.js @@ -382,7 +382,7 @@ function initEditFieldListeners() { var wikiToolbar = new jsToolBar(document.getElementById('description_textarea')); wikiToolbar.setHelpLink('/help/fr/wiki_syntax_textile.html'); wikiToolbar.draw(); } else if(typeof(CKEDITOR) === "object" && typeof(CKEDITOR.replace) === typeof(Function)) { - CKEDITOR.replace('description_textarea', { height: 100, zIndex: 999}); + CKEDITOR.replace('description_textarea', { height: 100 }); } } diff --git a/init.rb b/init.rb index 191eb40..1c5b702 100644 --- a/init.rb +++ b/init.rb @@ -6,7 +6,7 @@ Redmine::Plugin.register :redmine_issue_dynamic_edit do name 'Redmine Dynamic edit Issue plugin' author 'Hugo Zilliox' description 'Allows users to dynamically update issue attributes in detailed view without refreshing the page (JIRA style)' - version '0.4.9' + version '0.5.0' url 'https://github.com/ilogeek/redmine_issue_dynamic_edit' author_url 'https://hzilliox.fr' end