Changeset 425345
- Timestamp:
- 08/18/2011 12:14:56 PM (14 years ago)
- Location:
- debug-bar-extender/trunk
- Files:
-
- 2 edited
-
debug-bar-extender.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debug-bar-extender/trunk/debug-bar-extender.php
r387615 r425345 145 145 add_filter( 'debug_bar_panels', array( &$this, 'add_var_menu' ) ); 146 146 147 wp_enqueue_style( 'debug-bar-extender', plugins_url( "css/debug-bar-extender.css", __FILE__ ), array('debug-bar'), '20110302' );148 wp_enqueue_script( 'debug-bar-extender', plugins_url( "js/debug-bar-extender.js", __FILE__ ), array('debug-bar'), '20110302', true);149 147 148 add_action( 'init', array( &$this, 'add_design_parts' ) ); 149 150 150 if ( 1 == $this->settings['track_default_vars'] ) { 151 151 add_action( 'parse_request', array( &$this, 'trace_var_request' ), 1000 ); … … 224 224 } 225 225 226 /* 227 * Enqueue Styles and Scripts 228 */ 229 public function add_design_parts() { 230 wp_enqueue_style( 'debug-bar-extender', plugins_url( "css/debug-bar-extender.css", __FILE__ ), array('debug-bar'), '20110302' ); 231 wp_enqueue_script( 'debug-bar-extender', plugins_url( "js/debug-bar-extender.js", __FILE__ ), array('debug-bar'), '20110302', true ); 232 } 233 226 234 /* 227 235 * This function starts a profiling block. Currently you can have only one -
debug-bar-extender/trunk/readme.txt
r387615 r425345 4 4 Donate link: http://hitchhackerguide.com 5 5 Requires at least: 3.1 6 Tested up to: 3. 16 Tested up to: 3.2.1 7 7 Stable tag: trunk 8 8 … … 74 74 == ChangeLog == 75 75 76 = Version 0.4 = 77 78 * Moving style enqueuing to init hook. We don't want to be doing it wrong http://core.trac.wordpress.org/changeset/18556 79 76 80 = Version 0.3 = 77 81
Note: See TracChangeset
for help on using the changeset viewer.