<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[BuddyPress] [3527] trunk/bp-themes/bp-default/functions.php:
  Load javascript in the init action.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>3527</dd>
<dt>Author</dt> <dd>djpaul</dd>
<dt>Date</dt> <dd>2010-12-11 22:41:14 +0000 (Sat, 11 Dec 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Load javascript in the init action. Fixes #2942</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpthemesbpdefaultfunctionsphp">trunk/bp-themes/bp-default/functions.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpthemesbpdefaultfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-themes/bp-default/functions.php (3526 => 3527)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-themes/bp-default/functions.php        2010-12-11 19:18:14 UTC (rev 3526)
+++ trunk/bp-themes/bp-default/functions.php        2010-12-11 22:41:14 UTC (rev 3527)
</span><span class="lines">@@ -80,25 +80,6 @@
</span><span class="cx"> 
</span><span class="cx">         //End of changeable header section
</span><span class="cx"> 
</span><del>-        // Load the javascript for the theme
-        wp_enqueue_script( 'dtheme-ajax-js', get_template_directory_uri() . '/_inc/global.js', array( 'jquery' ) );
-
-        // Add words that we need to use in JS to the end of the page so they can be translated and still used.
-        $params = array(
-                'my_favs'           =&gt; __( 'My Favorites', 'buddypress' ),
-                'accepted'          =&gt; __( 'Accepted', 'buddypress' ),
-                'rejected'          =&gt; __( 'Rejected', 'buddypress' ),
-                'show_all_comments' =&gt; __( 'Show all comments for this thread', 'buddypress' ),
-                'show_all'          =&gt; __( 'Show all', 'buddypress' ),
-                'comments'          =&gt; __( 'comments', 'buddypress' ),
-                'close'             =&gt; __( 'Close', 'buddypress' )
-        );
-
-        if ( !empty( $bp-&gt;displayed_user-&gt;id ) )
-                $params['mention_explain'] = sprintf( __( &quot;%s is a unique identifier for %s that you can type into any message on this site. %s will be sent a notification and a link to your message any time you use it.&quot;, 'buddypress' ), '@' . bp_get_displayed_user_username(), bp_get_user_firstname( bp_get_displayed_user_fullname() ), bp_get_user_firstname( bp_get_displayed_user_fullname() ) );
-
-        wp_localize_script( 'dtheme-ajax-js', 'BP_DTheme', $params );
-
</del><span class="cx">         // Register buttons for the relevant component templates
</span><span class="cx">         // Friends button
</span><span class="cx">         if ( bp_is_active( 'friends' ) )
</span><span class="lines">@@ -126,6 +107,36 @@
</span><span class="cx"> add_action( 'after_setup_theme', 'bp_dtheme_setup' );
</span><span class="cx"> endif;
</span><span class="cx"> 
</span><ins>+/**
+ * Enqueue theme javascript safely after the 'init' action, per WordPress Codex.
+ *
+ * @global $bp The global BuddyPress settings variable created in bp_core_setup_globals()
+ * @see http://codex.wordpress.org/Function_Reference/wp_enqueue_script
+ * @since 1.3
+ */
+function bp_dtheme_enqueue_scripts() {
+        global $bp;
+
+        wp_enqueue_script( 'dtheme-ajax-js', get_template_directory_uri() . '/_inc/global.js', array( 'jquery' ) );
+
+        // Add words that we need to use in JS to the end of the page so they can be translated and still used.
+        $params = array(
+                'my_favs'           =&gt; __( 'My Favorites', 'buddypress' ),
+                'accepted'          =&gt; __( 'Accepted', 'buddypress' ),
+                'rejected'          =&gt; __( 'Rejected', 'buddypress' ),
+                'show_all_comments' =&gt; __( 'Show all comments for this thread', 'buddypress' ),
+                'show_all'          =&gt; __( 'Show all', 'buddypress' ),
+                'comments'          =&gt; __( 'comments', 'buddypress' ),
+                'close'             =&gt; __( 'Close', 'buddypress' )
+        );
+
+        if ( !empty( $bp-&gt;displayed_user-&gt;id ) )
+                $params['mention_explain'] = sprintf( __( &quot;%s is a unique identifier for %s that you can type into any message on this site. %s will be sent a notification and a link to your message any time you use it.&quot;, 'buddypress' ), '@' . bp_get_displayed_user_username(), bp_get_user_firstname( bp_get_displayed_user_fullname() ), bp_get_user_firstname( bp_get_displayed_user_fullname() ) );
+
+        wp_localize_script( 'dtheme-ajax-js', 'BP_DTheme', $params );
+}
+add_action( 'wp_enqueue_scripts', 'bp_dtheme_enqueue_scripts' );
+
</ins><span class="cx"> if ( !function_exists( 'bp_dtheme_admin_header_style' ) ) :
</span><span class="cx"> /**
</span><span class="cx">  * Styles the header image displayed on the Appearance &gt; Header admin panel.
</span></span></pre>
</div>
</div>

</body>
</html>