Browse Source

Add a version number for the IE11 script

Ben Dwyer 4 years ago
parent
commit
6f96f604ee
1 changed files with 2 additions and 1 deletions
  1. 2 1
      seedlet/functions.php

+ 2 - 1
seedlet/functions.php

@@ -390,7 +390,8 @@ function seedlet_scripts() {
 		wp_register_script( 'css-vars-ponyfill', get_stylesheet_directory_uri() . '/assets/js/css-vars-ponyfill2.js' );
 		wp_enqueue_script( 'ie11-fix',
 			get_stylesheet_directory_uri() . '/assets/js/ie11-fix.js',
-			array( 'css-vars-ponyfill' )
+			array( 'css-vars-ponyfill' ),
+			'1.0'
 		);
 	}