Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
moldcraft committed Nov 23, 2016
1 parent 0611c55 commit ceda40e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion shortcodes/icon-box/static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
wp_enqueue_style(
'fw-shortcode-icon-box',
$shortcodes_extension->get_declared_URI('/shortcodes/icon-box/static/css/styles.css'),
array('fw-font-awesome')
array('font-awesome')
);

2 changes: 1 addition & 1 deletion shortcodes/icon/static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
wp_enqueue_style(
'fw-shortcode-icon',
$shortcodes_extension->get_declared_URI('/shortcodes/icon/static/css/styles.css'),
array('fw-font-awesome')
array('font-awesome')
);

2 changes: 1 addition & 1 deletion shortcodes/notification/static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
wp_enqueue_style(
'fw-shortcode-notification',
$shortcodes_extension->get_declared_URI('/shortcodes/notification/static/css/styles.css'),
array('fw-font-awesome')
array('font-awesome')
);
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ protected function _enqueue_static( $id, $option, $data ) {

$static_uri = $table_shortcode->get_declared_uri() . '/includes/fw-option-type-table/static/';

wp_enqueue_style( 'fw-font-awesome' );
wp_enqueue_style( 'font-awesome' );

wp_enqueue_style(
'fw-option-' . $this->get_type() . '-default',
Expand Down
2 changes: 1 addition & 1 deletion shortcodes/testimonials/static.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
wp_enqueue_style(
'fw-shortcode-testimonials',
$shortcodes_extension->get_declared_URI('/shortcodes/testimonials/static/css/styles.css'),
array('fw-font-awesome')
array('font-awesome')
);
wp_enqueue_script(
'fw-shortcode-testimonials-caroufredsel',
Expand Down
2 changes: 1 addition & 1 deletion static.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

if (! is_admin()) {
wp_register_style(
'fw-font-awesome',
'font-awesome',
fw_get_framework_directory_uri('/static/libs/font-awesome/css/font-awesome.min.css'),
array(),
fw()->manifest->get_version()
Expand Down

0 comments on commit ceda40e

Please sign in to comment.