diff --git a/app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee b/app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee index d49e7b6db..8ca71006a 100644 --- a/app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee +++ b/app/assets/javascripts/app/controllers/_ui_element/ticket_perform_action.coffee @@ -350,7 +350,7 @@ class App.UiElement.ticket_perform_action notificationElement.find('.js-body div[contenteditable="true"]').ce( mode: 'richtext' placeholder: 'message' - maxlength: 20000 + maxlength: 200000 ) new App.WidgetPlaceholder( el: notificationElement.find('.js-body div[contenteditable="true"]').parent() diff --git a/app/assets/javascripts/app/lib/base/jquery.textmodule.js b/app/assets/javascripts/app/lib/base/jquery.textmodule.js index 377461abf..b40749fea 100644 --- a/app/assets/javascripts/app/lib/base/jquery.textmodule.js +++ b/app/assets/javascripts/app/lib/base/jquery.textmodule.js @@ -53,7 +53,7 @@ } Plugin.prototype.onKeydown = function (e) { - console.log("onKeydown", this.isActive()) + //console.log("onKeydown", this.isActive()) // navigate through item if (this.isActive()) { diff --git a/script/bootstrap.sh b/script/bootstrap.sh index f8bcb41ae..9ce47fc7a 100755 --- a/script/bootstrap.sh +++ b/script/bootstrap.sh @@ -6,7 +6,7 @@ rm -rf tmp/cache* export Z_LOCALES='en-us:de-de' -rake db:drop -rake db:create -rake db:migrate -rake db:seed +bundle exec rake db:drop +bundle exec rake db:create +bundle exec rake db:migrate +bundle exec rake db:seed