diff --git a/IPython/frontend/html/notebook/static/js/textcell.js b/IPython/frontend/html/notebook/static/js/textcell.js index 7732c3ea92e..036bcf681f0 100644 --- a/IPython/frontend/html/notebook/static/js/textcell.js +++ b/IPython/frontend/html/notebook/static/js/textcell.js @@ -15,7 +15,7 @@ var IPython = (function (IPython) { var TextCell = function (notebook) { this.code_mirror_mode = this.code_mirror_mode || 'htmlmixed'; - this.placeholder = this.placeholder || ''; + this.placeholder = this.placeholder || '𝄆'; IPython.Cell.apply(this, arguments); this.rendered = false; this.cell_type = this.cell_type || 'text'; @@ -159,7 +159,7 @@ var IPython = (function (IPython) { // HTMLCell var HTMLCell = function (notebook) { - this.placeholder = "Type HTML and LaTeX: $\\alpha^2$"; + this.placeholder = "𝄆 Type HTML and LaTeX: $\\alpha^2$"; IPython.TextCell.apply(this, arguments); this.cell_type = 'html'; }; @@ -184,7 +184,7 @@ var IPython = (function (IPython) { // MarkdownCell var MarkdownCell = function (notebook) { - this.placeholder = "Type *Markdown* and LaTeX: $\\alpha^2$"; + this.placeholder = "𝄆 Type *Markdown* and LaTeX: $\\alpha^2$"; IPython.TextCell.apply(this, arguments); this.cell_type = 'markdown'; }; @@ -222,7 +222,7 @@ var IPython = (function (IPython) { // RSTCell var RSTCell = function (notebook) { - this.placeholder = "Type *ReStructured Text* and LaTeX: $\\alpha^2$"; + this.placeholder = "𝄆 Type *ReStructured Text* and LaTeX: $\\alpha^2$"; IPython.TextCell.apply(this, arguments); this.cell_type = 'rst'; };