witten
/
luminotes
Archived
1
0
Fork 0

Internet Explorer version 6, begone!

This commit is contained in:
Dan Helfman 2009-01-27 15:54:11 -08:00
parent 99e1a22f8b
commit 5afee52199
4 changed files with 8 additions and 19 deletions

2
NEWS
View File

@ -6,6 +6,8 @@
* Start a search: Ctrl-slash
* Save the current note: Ctrl-space
* Fixed various bugs related to the subscription page.
* Dropped support for Internet Explorer version 6. But version 7+ is still
fully supported!
1.5.12: December 30, 2008
* Fixed a bug in which clicking on the notebook rename text field ended the

View File

@ -39,21 +39,6 @@ support in various web browsers. It only takes a few seconds.
<li>Return to the page that required JavaScript, and then click the reload button or press the <b>F5</b> key to reload the page.</li>
</ol>
<b>Internet Explorer 6</b>
<ol>
<li>Click <b>Tools</b> on the menu at the top of your browser window.</li>
<li>Click <b>Internet Options</b>.</li>
<li>Click the <b>Security</b> tab.</li>
<li>Click the <b>Custom Level...</b> button.</li>
<li>Scroll down to the <b>Scripting</b> section.</li>
<li>Under the <b>Active scripting</b> heading, click <b>Enable</b>.</li>
<li>Click the <b>OK</b> button.</li>
<li>If you're prompted to confirm, click the <b>Yes</b> button.</li>
<li>Click the <b>OK</b> button.</li>
<li>Return to the page that required JavaScript, and then click the refresh button or press the <b>F5</b> key to reload the page.</li>
</ol>
<b>Internet Explorer 7</b>
<ol>

View File

@ -6,10 +6,10 @@ so not all browsers will work for editing your wiki. Supported browsers include:
</p>
<ul>
<li>Internet Explorer 6+</li>
<li>Firefox 1.5+</li>
<li>Chrome (beta Luminotes support)</li>
<li>Safari 3+ (beta Luminotes support)</li>
<li>Internet Explorer 7+</li>
<li>Firefox 2+</li>
<li>Chrome 1+</li>
<li>Safari 3+</li>
</ul>
<p>

View File

@ -53,6 +53,8 @@ function Wiki( invoker ) {
if ( OPERA )
unsupported_agent = "Opera";
else if ( MSIE6 )
unsupported_agent = "Microsoft Internet Explorer version 6";
if ( unsupported_agent )
this.display_message( "Luminotes does not currently support the " + unsupported_agent + " web browser for editing. If possible, please use a recent version of Firefox, Internet Explorer, Chrome, or Safari instead. Sorry for the inconvenience." );