diff --git a/vendor/assets/javascripts/bootstrap-wysihtml5/core-b3.js.erb b/vendor/assets/javascripts/bootstrap-wysihtml5/core-b3.js.erb index 90360ac1..e3b19a7a 100644 --- a/vendor/assets/javascripts/bootstrap-wysihtml5/core-b3.js.erb +++ b/vendor/assets/javascripts/bootstrap-wysihtml5/core-b3.js.erb @@ -56,7 +56,7 @@ "<h3 class='modal-title'>" + locale.link.insert + "</h3>" + "</div>" + "<div class='modal-body'>" + - "<input value='http://' class='bootstrap-wysihtml5-insert-link-url form-control'>" + + "<input placeholder='http://' class='bootstrap-wysihtml5-insert-link-url form-control'>" + "<label class='checkbox'> <input type='checkbox' class='bootstrap-wysihtml5-insert-link-target' checked>" + locale.link.target + "</label>" + "</div>" + "<div class='modal-footer'>" + @@ -81,7 +81,7 @@ "<h3 class='modal-title'>" + locale.image.insert + "</h3>" + "</div>" + "<div class='modal-body'>" + - "<input value='http://' class='bootstrap-wysihtml5-insert-image-url form-control'>" + + "<input placeholder='http://link-to-your-image.png' class='bootstrap-wysihtml5-insert-image-url form-control'>" + "</div>" + "<div class='modal-footer'>" + "<a href='#' class='btn btn-default' data-dismiss='modal'>" + locale.image.cancel + "</a>" + @@ -278,7 +278,7 @@ var activeButton = $(this).hasClass("wysihtml5-command-active"); if (!activeButton) { - self.editor.currentView.element.focus(false); + self.editor.currentView.element.focus({}); caretBookmark = self.editor.composer.selection.getBookmark(); insertImageModal.appendTo('body').modal('show'); insertImageModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { @@ -340,7 +340,7 @@ var activeButton = $(this).hasClass("wysihtml5-command-active"); if (!activeButton) { - self.editor.currentView.element.focus(false); + self.editor.currentView.element.focus({}); caretBookmark = self.editor.composer.selection.getBookmark(); insertLinkModal.appendTo('body').modal('show'); insertLinkModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { @@ -496,7 +496,7 @@ target: "Open link in new window" }, image: { - insert: "Insert image", + insert: "Insert image URL", cancel: "Cancel" }, html: { diff --git a/vendor/assets/javascripts/bootstrap-wysihtml5/core.js.erb b/vendor/assets/javascripts/bootstrap-wysihtml5/core.js.erb index 85935579..173a1504 100644 --- a/vendor/assets/javascripts/bootstrap-wysihtml5/core.js.erb +++ b/vendor/assets/javascripts/bootstrap-wysihtml5/core.js.erb @@ -54,7 +54,7 @@ "<h3>" + locale.link.insert + "</h3>" + "</div>" + "<div class='modal-body'>" + - "<input value='http://' class='bootstrap-wysihtml5-insert-link-url input-xlarge'>" + + "<input placeholder='http://' class='bootstrap-wysihtml5-insert-link-url input-xlarge'>" + "<label class='checkbox'> <input type='checkbox' class='bootstrap-wysihtml5-insert-link-target' checked>" + locale.link.target + "</label>" + "</div>" + "<div class='modal-footer'>" + @@ -75,7 +75,7 @@ "<h3>" + locale.image.insert + "</h3>" + "</div>" + "<div class='modal-body'>" + - "<input value='http://' class='bootstrap-wysihtml5-insert-image-url input-xlarge'>" + + "<input placeholder='http://link-to-your-image.png' class='bootstrap-wysihtml5-insert-image-url input-xlarge'>" + "</div>" + "<div class='modal-footer'>" + "<a href='#' class='btn' data-dismiss='modal'>" + locale.image.cancel + "</a>" + @@ -270,7 +270,7 @@ var activeButton = $(this).hasClass("wysihtml5-command-active"); if (!activeButton) { - self.editor.currentView.element.focus(false); + self.editor.currentView.element.focus({}); caretBookmark = self.editor.composer.selection.getBookmark(); insertImageModal.appendTo('body').modal('show'); insertImageModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { @@ -332,7 +332,7 @@ var activeButton = $(this).hasClass("wysihtml5-command-active"); if (!activeButton) { - self.editor.currentView.element.focus(false); + self.editor.currentView.element.focus({}); caretBookmark = self.editor.composer.selection.getBookmark(); insertLinkModal.appendTo('body').modal('show'); insertLinkModal.on('click.dismiss.modal', '[data-dismiss="modal"]', function(e) { diff --git a/vendor/assets/javascripts/bootstrap-wysihtml5/wysihtml5.js b/vendor/assets/javascripts/bootstrap-wysihtml5/wysihtml5.js index d475cc51..e6e7d401 100644 --- a/vendor/assets/javascripts/bootstrap-wysihtml5/wysihtml5.js +++ b/vendor/assets/javascripts/bootstrap-wysihtml5/wysihtml5.js @@ -9136,7 +9136,7 @@ wysihtml5.views.Textarea = wysihtml5.views.View.extend( }); dialog.observe("cancel", function() { - that.editor.focus(false); + that.editor.focus({}); that.editor.fire("cancel:dialog", { command: command, dialogContainer: dialogElement, commandLink: link }); }); } @@ -9166,7 +9166,7 @@ wysihtml5.views.Textarea = wysihtml5.views.View.extend( _execCommand: function(command, commandValue) { // Make sure that composer is focussed (false => don't move caret to the end) - this.editor.focus(false); + this.editor.focus({}); this.composer.commands.exec(command, commandValue); this._updateLinkStates();