Changeset 1407226
- Timestamp:
- 04/29/2016 09:14:07 AM (10 years ago)
- Location:
- vikinguard/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
vikinguard.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vikinguard/trunk/readme.txt
r1303853 r1407226 3 3 Tags: vikinguard, real user monitoring, rum, web performance, user experience, availability, seo,uptime, availability 4 4 Requires at least: 2.1 5 Tested up to: 4. 3.16 Stable tag: 1.2. 05 Tested up to: 4.5 6 Stable tag: 1.2.1 7 7 8 8 With Vikinguard you'll know the real user experience of your site and you'll be notified when something is not performing as expected. … … 55 55 * Sign up bug fixed. 56 56 57 = 1.2.1 = 58 * Fix bug enqueing scripts 57 59 60 -
vikinguard/trunk/vikinguard.php
r1303149 r1407226 8 8 * Author URI: https://www.vikinguard.com 9 9 */ 10 wp_enqueue_script ( 'heimdal', plugins_url ( 'heimdal.js', __FILE__ ) ); 10 11 function wpb_adding_heimdal_scripts() { 12 wp_register_script('heimdal', plugins_url ( 'heimdal.js', __FILE__ )); 13 wp_enqueue_script('heimdal'); 14 } 11 15 12 16 // Make sure we don't expose any info if called directly … … 295 299 if (is_admin ()) { 296 300 load_plugin_textdomain ( 'Vikinguard', false, dirname ( plugin_basename ( __FILE__ ) ) . '/i18n' ); 301 add_action( 'admin_enqueue_scripts', 'wpb_adding_heimdal_scripts' ); 297 302 add_action ( 'admin_menu', 'add_Vikinguard_admin_page' ); 298 303 add_filter ( 'plugin_action_links_' . plugin_basename ( __FILE__ ), 'add_Vikinguard_action_links' );
Note: See TracChangeset
for help on using the changeset viewer.