Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. window.fluid.dockBadge = '';
  2. setTimeout(updateDockBadge, 1000);
  3. setTimeout(updateDockBadge, 3000);
  4. setInterval(updateDockBadge, 5000);
  5.  
  6. function updateDockBadge() {
  7.         var newBadge = '';
  8.        
  9.         var span = document.getElementById('gbi1');
  10.         if (span) {
  11.                 var nr = parseInt(span.innerHTML);
  12.                 if (nr > 0) {
  13.                         newBadge = nr;
  14.                 }
  15.         }
  16.  
  17.         window.fluid.dockBadge = newBadge;
  18. }