/* SVN FILE: $Id: no_fouc.js 12 2009-08-29 10:52:04Z Chris $ */
<!--
/* SVN FILE: $Id: no_fouc.js 12 2009-08-29 10:52:04Z Chris $ */
/**
 * Stops Flash of unstyled content
 *
 * Adds the "js" class to the html tag. Using CSS elements that need to be
 * styled when using javascript so stop FOUC can be targeted using the html.js
 * selector.
 *
 * @copyright    Copyright 2008 PBM Web Development - All Rights Reserved
 * @package      app
 * @subpackage   app.webroot.js
 * @since        V1.0.0
 * @version      $Revision: 12 $
 * @modifiedby   $LastChangedBy: Chris $
 * @lastmodified $Date: 2009-08-29 11:52:04 +0100 (Sat, 29 Aug 2009) $
 */
jQuery('html').addClass('js'); // used to stop FOUC
// -->
