Commit 0afc8f94 authored by Jonathan Rehm's avatar Jonathan Rehm

Use TinyMCE's API to update the description's content

parent a95e6aab
......@@ -4,7 +4,7 @@
* Google Books api document: https://developers.google.com/books/docs/v1/using
* Douban Books api document: https://developers.douban.com/wiki/?title=book_v2 (Chinese Only)
*/
/* global i18nMsg */
/* global i18nMsg, tinymce */
var dbResults = [];
var ggResults = [];
......@@ -158,7 +158,7 @@ function getMeta (source, id) {
var tags;
if (source === "google") {
meta = ggResults[id];
$("#description").val(meta.volumeInfo.description);
tinymce.get("description").setContent(meta.volumeInfo.description);
$("#bookAuthor").val(meta.volumeInfo.authors.join(" & "));
$("#book_title").val(meta.volumeInfo.title);
if (meta.volumeInfo.categories) {
......@@ -172,7 +172,7 @@ function getMeta (source, id) {
}
if (source === "douban") {
meta = dbResults[id];
$("#description").val(meta.summary);
tinymce.get("description").setContent(meta.summary);
$("#bookAuthor").val(meta.author.join(" & "));
$("#book_title").val(meta.title);
tags = "";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment