change single quotes to double quotes

This commit is contained in:
Adam Misiorny 2015-12-10 07:58:19 +01:00
parent f891cfb787
commit c92f4e3bd3
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@ var simplemde = new SimpleMDE({
strikethrough: false,
underscoresBreakWords: true,
},
placeholder: 'Type here...',
placeholder: "Type here...",
previewRender: function(plainText) {
return customMarkdownParser(plainText); // Returns HTML from a custom parser
},

View file

@ -1049,7 +1049,7 @@ SimpleMDE.prototype.render = function(el) {
extraKeys: keyMaps,
lineWrapping: (options.lineWrapping === false) ? false : true,
allowDropFileTypes: ["text/plain"],
placeholder: options.placeholder || el.getAttribute('placeholder') || ''
placeholder: options.placeholder || el.getAttribute("placeholder") || ""
});
if(options.toolbar !== false) {