-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
EvanHerman
committed
Oct 25, 2013
1 parent
20e25fb
commit 344c620
Showing
12 changed files
with
140 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
11 changes: 11 additions & 0 deletions
11
includes/css/icon-font/wp-svg-plugin-icon-set1-expansion.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
40 changes: 40 additions & 0 deletions
40
includes/css/wordpress-svg-icon-plugin-expansion-style.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[16-May-2013 17:13:01] PHP Fatal error: Call to undefined function getelementbyid() in /home6/evanherm/public_html/wp-content/plugins/WP2YT-Uploader/includes/process.php on line 9 | ||
[16-May-2013 17:13:01] PHP Fatal error: Call to undefined function getelementbyid() in /home6/evanherm/public_html/wp-content/plugins/WP2YT-Uploader/includes/process.php on line 9 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,21 @@ | ||
<?php | ||
|
||
/*********************************** | ||
* SCRIPT CONTROLS | ||
***********************************/ | ||
|
||
function wordpress_svg_icon_plugin_load_style() { | ||
wp_register_style( 'svg-icon-set1-style', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-style.css'); wp_enqueue_style( 'svg-icon-set1-style' ); | ||
} | ||
add_action( 'wp_enqueue_scripts', 'wordpress_svg_icon_plugin_load_style' ); | ||
function wordpress_svg_icon_plugin_load_style_dashboard() { wp_register_style( 'svg-icon-set1-style-dashboard', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-style.css'); wp_enqueue_style( 'svg-icon-set1-style-dashboard' );}add_action( 'admin_enqueue_scripts', 'wordpress_svg_icon_plugin_load_style_dashboard' ); | ||
<?php | ||
|
||
/*********************************** | ||
* SCRIPT CONTROLS | ||
***********************************/ | ||
|
||
function wordpress_svg_icon_plugin_load_style() { | ||
wp_register_style( 'svg-icon-set1-style', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-style.css'); | ||
wp_enqueue_style( 'svg-icon-set1-style' ); | ||
wp_register_style( 'svg-icon-set1-expansion-style', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-expansion-style.css'); | ||
wp_enqueue_style( 'svg-icon-set1-expansion-style' ); | ||
} | ||
add_action( 'wp_enqueue_scripts', 'wordpress_svg_icon_plugin_load_style' ); | ||
|
||
function wordpress_svg_icon_plugin_load_style_dashboard() { | ||
wp_register_style( 'svg-icon-set1-style-dashboard', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-style.css'); | ||
wp_enqueue_style( 'svg-icon-set1-style-dashboard' ); | ||
wp_register_style( 'svg-icon-set1-expansion-style-dashboard', plugin_dir_url(__FILE__).'css/wordpress-svg-icon-plugin-expansion-style.css'); | ||
wp_enqueue_style( 'svg-icon-set1-expansion-style-dashboard' ); | ||
} | ||
add_action( 'admin_enqueue_scripts', 'wordpress_svg_icon_plugin_load_style_dashboard' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters