~ubuntu-branches/ubuntu/trusty/ntop/trusty

« back to all changes in this revision

Viewing changes to html/functions.js

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2008-06-15 14:38:28 UTC
  • mfrom: (2.1.11 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080615143828-oalh84nda2hje4do
Tags: 3:3.3-11
Correction of Polish translation encoding, closes: #479490. Thanks
to Christian Perrier <bubulle@debian.org> for the help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
function confirmShutdown() {
104
104
   return confirm("Are you sure you want to shutdown NTOP?");
105
105
}
 
106
 
 
107
 
 
108
/* Check SVG browser support */
 
109
var hasSVGSupport = false;  // does client have SVG support?
 
110
if (navigator.mimeTypes != null && navigator.mimeTypes.length > 0)
 
111
{
 
112
   if ((navigator.mimeTypes["image/svg+xml"] != null) || (navigator.mimeTypes["image/svg-xml"] != null))
 
113
    {
 
114
        hasSVGSupport = true;
 
115
    }
 
116
}
 
117
 
 
118