View Single Post
Old 02-27-2009, 04:32 AM  
GrouchyAdmin
Now choke yourself!
 
GrouchyAdmin's Avatar
 
Industry Role:
Join Date: Apr 2006
Posts: 12,085
Sweet Jesus that's some of the nastiest JS I've ever have the pleasure of looking at. It's nearly 17k, unpacked, and while bizarre, is certainly "enterprise grade".

This function is actually useful:

Code:
helpers.browser={
  IE:!!(window.attachEvent&&!window.opera),
  Opera:!!window.opera,
  WebKit:navigator.userAgent.indexOf('AppleWebKit/')>-1,
  Gecko:navigator.userAgent.indexOf('Gecko')>-1 &&
    navigator.userAgent.indexOf('KHTML')==-1,
  Safari:navigator.userAgent.indexOf('Safari')>-1
};
__________________
GrouchyAdmin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote