Sha256: 5df397bc86d2943ef22fa755a88b251a548c96f0970375acda2a2d580ca9242e
Contents?: true
Size: 1.96 KB
Versions: 2
Compression:
Stored size: 1.96 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== // sc_require("system/browser"); SC.setupBodyClassNames = function() { var el = document.body, browser, platform, shadows, borderRad, classNames, style, ieVersion; if (!el) return ; browser = SC.browser.current ; platform = SC.browser.windows ? 'windows' : SC.browser.mac ? 'mac' : 'other-platform' ; style = document.documentElement.style; shadows = (style.MozBoxShadow !== undefined) || (style.webkitBoxShadow !== undefined) || (style.oBoxShadow !== undefined) || (style.boxShadow !== undefined); borderRad = (style.MozBorderRadius !== undefined) || (style.webkitBorderRadius !== undefined) || (style.oBorderRadius !== undefined) || (style.borderRadius !== undefined); classNames = el.className ? el.className.split(' ') : [] ; if(shadows) classNames.push('box-shadow'); if(borderRad) classNames.push('border-rad'); classNames.push(browser, platform) ; // This isn't a perfectly correct way to compare versions, but should be okay // in practical usage. ieVersion = parseInt(SC.browser.version, 10); if (SC.browser.isIE) { if (ieVersion === 7) { classNames.push('ie7'); } else if (ieVersion === 8) { classNames.push('ie8'); } else if (ieVersion === 9) { classNames.push('ie9'); } } if(browser==="safari" || browser==="chrome") classNames.push('webkit'); if (SC.browser.mobileSafari) classNames.push('mobile-safari') ; if ('createTouch' in document) classNames.push('touch'); el.className = classNames.join(' ') ; } ;
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sproutcore-1.8.1 | lib/frameworks/sproutcore/frameworks/bootstrap/system/loader.js |
sproutcore-1.8.0 | lib/frameworks/sproutcore/frameworks/bootstrap/system/loader.js |