APi method renamed

This commit is contained in:
khaydarov 2017-01-30 20:14:01 +03:00
parent 869c65f3da
commit 87b20c0686
4 changed files with 4 additions and 4 deletions

View file

@ -1827,7 +1827,7 @@ var codex =
* @param [String] htmlString - html content as string
* @return {string} - html content as string
*/
content.wrapTextIntoParagraphs = function (htmlString) {
content.wrapTextWithParagraphs = function (htmlString) {
var wrapper = document.createElement('DIV'),
newWrapper = document.createElement('DIV'),

File diff suppressed because one or more lines are too long

View file

@ -694,7 +694,7 @@ var content = (function(content) {
* @param [String] htmlString - html content as string
* @return {string} - html content as string
*/
content.wrapTextIntoParagraphs = function(htmlString) {
content.wrapTextWithParagraphs = function(htmlString) {
var wrapper = document.createElement('DIV'),
newWrapper = document.createElement('DIV'),

View file

@ -445,7 +445,7 @@ var quote = (function(quote) {
}
/** Make paragraphs */
data.text = codex.content.wrapTextIntoParagraphs(data.text);
data.text = codex.content.wrapTextWithParagraphs(data.text);
return data;
};