From 1e5bd77bda3700ff96327f3e0c5a2ccc291237f4 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 8 Dec 2014 11:37:01 -0800 Subject: [PATCH] s/mode/language/ for user-facing CodeMirror mode (hover text, language menu) --- IPython/html/static/edit/js/menubar.js | 4 ++-- IPython/html/templates/edit.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/IPython/html/static/edit/js/menubar.js b/IPython/html/static/edit/js/menubar.js index ccd11209f..374ebe201 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 527aea174..fdf30ca0f 100644 --- a/IPython/html/templates/edit.html +++ b/IPython/html/templates/edit.html @@ -63,7 +63,7 @@ data-file-path="{{file_path}}" -