From c8d934d02b7daca5f8d738a761e79faa3dd74b91 2014-12-08 19:37:01 From: Min RK Date: 2014-12-08 19:37:01 Subject: [PATCH] s/mode/language/ for user-facing CodeMirror mode (hover text, language menu) --- diff --git a/IPython/html/static/edit/js/menubar.js b/IPython/html/static/edit/js/menubar.js index ccd1120..374ebe2 100644 --- a/IPython/html/static/edit/js/menubar.js +++ b/IPython/html/static/edit/js/menubar.js @@ -125,7 +125,7 @@ define([ .text(modeinfo.name) .attr( 'title', - "The current highlighting mode is " + modeinfo.name + "The current language is " + modeinfo.name ); }); }; @@ -145,7 +145,7 @@ define([ .text(info.name) .click(make_set_mode(info)) .attr('title', - "Set highlighting mode to " + info.name + "Set language to " + info.name ) )); } diff --git a/IPython/html/templates/edit.html b/IPython/html/templates/edit.html index 527aea1..fdf30ca 100644 --- a/IPython/html/templates/edit.html +++ b/IPython/html/templates/edit.html @@ -63,7 +63,7 @@ data-file-path="{{file_path}}" -