witten
/
luminotes
Archived
1
0
Fork 0

No longer displaying annoying warning messages about Safari/Chrome support being considered "beta".

This commit is contained in:
Dan Helfman 2008-11-11 22:38:53 -08:00
parent a6ca368e4c
commit f632e109cd
2 changed files with 3 additions and 5 deletions

2
NEWS
View File

@ -6,6 +6,8 @@
* Fixed a bug in Internet Explorer in which clicking a link sometimes caused
the browser window to scroll to the destination note, only to immediately
scroll back to the clicked link.
* No longer displaying annoying warning messages about Safari/Chrome support
being considered "beta".
* NOTE: Luminotes Server only, not Luminotes Desktop: Before you start
Luminotes Server after this upgrade, run the following command as the
PostgreSQL superuser (usually "postgres"):

View File

@ -57,11 +57,7 @@ function Wiki( invoker ) {
var unsupported_agent = null;
var beta_agent = null;
if ( /Chrome/.test( navigator.userAgent ) )
beta_agent = "Chrome";
else if ( /Safari/.test( navigator.userAgent ) )
beta_agent = "Safari";
else if ( /Opera/.test( navigator.userAgent ) )
if ( /Opera/.test( navigator.userAgent ) )
unsupported_agent = "Opera";
if ( unsupported_agent )