From 02444c81cc4556fcc50ad1483f8288c8b9f38b12 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Tue, 11 Dec 2007 05:52:33 +0000 Subject: [PATCH] Adding some emphasis to remark within "share this notebook". --- static/js/Wiki.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/static/js/Wiki.js b/static/js/Wiki.js index 5663ece..8c5d292 100644 --- a/static/js/Wiki.js +++ b/static/js/Wiki.js @@ -1287,8 +1287,9 @@ Wiki.prototype.share_notebook = function () { } else { var access_area = createDOM( "p", {}, createDOM( "b", {}, "Note: " ), - "These people will only be able to view your notebook. If you'd like them to be able to edit ", - "your notebook as well, please ", + "These people will only be able to ", createDOM( "i", "view" ), " your notebook. ", + "If you'd like them to be able to ", createDOM( "i", "edit" ), + " your notebook as well, please ", createDOM( "a", { "href": "/upgrade", "target": "_new" }, "upgrade" ), " your account.", createDOM( "input", { "type": "hidden", "name": "access", "value": "viewer" } )