Merge pull request #3998 from rockandror/ckeditor-browser-history-back
Destroy and intialize ckeditor on browser history back
This commit is contained in:
@@ -1,7 +0,0 @@
|
|||||||
$(document).on("page:change", function() {
|
|
||||||
if (typeof(CKEDITOR) != "undefined"){
|
|
||||||
for(name in CKEDITOR.instances){
|
|
||||||
try{CKEDITOR.replace(name);}catch(err){};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
@@ -1,6 +1,11 @@
|
|||||||
(function() {
|
(function() {
|
||||||
"use strict";
|
"use strict";
|
||||||
App.HTMLEditor = {
|
App.HTMLEditor = {
|
||||||
|
destroy: function() {
|
||||||
|
for (var name in CKEDITOR.instances) {
|
||||||
|
CKEDITOR.instances[name].destroy();
|
||||||
|
}
|
||||||
|
},
|
||||||
initialize: function() {
|
initialize: function() {
|
||||||
$("textarea.html-area").each(function() {
|
$("textarea.html-area").each(function() {
|
||||||
if ($(this).hasClass("admin")) {
|
if ($(this).hasClass("admin")) {
|
||||||
@@ -11,4 +16,7 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
$(document).on("page:before-unload", App.HTMLEditor.destroy);
|
||||||
|
$(document).on("page:restore", App.HTMLEditor.initialize);
|
||||||
}).call(this);
|
}).call(this);
|
||||||
|
|||||||
@@ -51,4 +51,20 @@ describe "CKEditor" do
|
|||||||
expect(page).not_to have_link "Upload"
|
expect(page).not_to have_link "Upload"
|
||||||
expect(page).not_to have_link "Browse Server"
|
expect(page).not_to have_link "Browse Server"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
context "When navigating back to editor page using browser history back" do
|
||||||
|
scenario "display ckeditor unsaved contents", :js do
|
||||||
|
login_as(create(:administrator).user)
|
||||||
|
|
||||||
|
visit new_admin_newsletter_path
|
||||||
|
fill_in_ckeditor "Email content", with: "This is an unsaved body"
|
||||||
|
click_link "Newsletters"
|
||||||
|
|
||||||
|
expect(page).to have_link "New newsletter"
|
||||||
|
|
||||||
|
go_back
|
||||||
|
|
||||||
|
expect(page).to have_ckeditor "Email content", with: "This is an unsaved body"
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user