Skip to content

Commit

Permalink
fixed import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nadimtuhin committed Oct 13, 2015
1 parent cc065e2 commit f36ba21
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/Assets/BlocksScripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ protected function enqueueBlockScripts( $block ) {

$blockUrl = $block['url'];

$this->enqueueBlockCss( $block, $blockUrl );

$enqueueCb( $blockUrl );
$this->enqueueBlockCss( $block, $blockUrl );
}

/**
Expand Down
1 change: 0 additions & 1 deletion app/Assets/Traits/FormEngineScripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ protected function formEngineScripts() {

$asset->style( 'tx-colorpicker', op_asset( "assets/css/bootstrap-colorpicker.css" ) );


if ( is_super_admin() ) {
$asset->style( 'tx-lithium-ui', op_asset( 'assets/css/lithium-builder.css' ) );
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import prepareSimpleControl from './prepareSimpleControl.js';
import _ from 'underscore';

function prepareMergedRepeatGroups(groups, serializedGroups) {
return groups.map(function (group, index) {
Expand Down

0 comments on commit f36ba21

Please sign in to comment.