Index: wp-content/themes/twentyfifteen/functions.php
===================================================================
--- wp-content/themes/twentyfifteen/functions.php	(revision 30007)
+++ wp-content/themes/twentyfifteen/functions.php	(working copy)
@@ -207,6 +207,8 @@
 	wp_enqueue_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141010' );
 	wp_style_add_data( 'twentyfifteen-ie7', 'conditional', 'lt IE 8' );
 
+	wp_enqueue_script( 'twentyfifteen-js-check', get_template_directory_uri() . '/js/js-check.js', array(), '20141024', false );
+
 	wp_enqueue_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20141010', true );
 
 	if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
Index: wp-content/themes/twentyfifteen/js/functions.js
===================================================================
--- wp-content/themes/twentyfifteen/js/functions.js	(revision 30007)
+++ wp-content/themes/twentyfifteen/js/functions.js	(working copy)
@@ -6,8 +6,6 @@
  */
 
 ( function( $ ) {
-	$( 'html' ).removeClass( 'no-js' );
-
 	// Add dropdown toggle that display child menu items.
 	$( '.main-navigation .page_item_has_children > a, .main-navigation .menu-item-has-children > a' ).append( '<button class="dropdown-toggle" aria-expanded="false">' + screenReaderText.expand + '</button>' );
 
Index: wp-content/themes/twentyfifteen/js/js-check.js
===================================================================
--- wp-content/themes/twentyfifteen/js/js-check.js	(revision 0)
+++ wp-content/themes/twentyfifteen/js/js-check.js	(working copy)
@@ -0,0 +1,3 @@
+( function() {
+	document.documentElement.className = document.documentElement.className.replace( 'no-js', 'js' );
+} )();
\ No newline at end of file

Property changes on: wp-content/themes/twentyfifteen/js/js-check.js
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
