witten
/
luminotes
Archived
1
0
Fork 0

Dropped support for Internet Explorer version 6.0! Time to break out the champagne.

This commit is contained in:
Dan Helfman 2008-12-23 19:31:08 -08:00
parent 1683fb090b
commit 712a2dee6b
4 changed files with 9 additions and 2 deletions

1
NEWS
View File

@ -4,6 +4,7 @@
note text at once.
* Added rounded corners to several display elements.
* Improved the layout on low-resolution displays (1024x768 and below).
* Dropped support for Internet Explorer version 6.0.
* Fixed a Luminotes Desktop bug in which creating and then clicking on a new
note link sometimes caused a red error message.
* Fixed a bug in which yellow pulldowns that were opened towards the bottom

View File

@ -71,3 +71,7 @@
margin-bottom: 0.25em;
padding: 0.25em 0.25em 0 0.5em;
}
#current_notebook_wrapper {
margin-right: 1em;
}

View File

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

View File

@ -54,9 +54,11 @@ function Wiki( invoker ) {
if ( /Opera/.test( navigator.userAgent ) )
unsupported_agent = "Opera";
if ( /MSIE 6\./.test( navigator.userAgent ) )
unsupported_agent = "Internet Explorer version 6.0";
if ( unsupported_agent )
this.display_message( "Luminotes does not currently support the " + unsupported_agent + " web browser for editing. If possible, please use Firefox or Internet Explorer instead. " + unsupported_agent + " support will be added in a future release. Sorry for the inconvenience." );
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. Sorry for the inconvenience." );
else if ( beta_agent )
this.display_message( "Luminotes support for your web browser (" + beta_agent + ") is currently in beta. If you encounter any problems, please contact support so that they can be fixed!" );
}