Skip to content

Commit

Permalink
Do not do CSS while initializing
Browse files Browse the repository at this point in the history
Closes #271 #232
  • Loading branch information
bfintal committed Sep 1, 2015
1 parent bd23623 commit 6d672d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions class-titan-framework.php
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,9 @@ public function createWidgetArea( $settings ) {
}

public function createCSS( $CSSString ) {
if ( self::$initializing ) {
return;
}
$this->cssInstance->addCSS( $CSSString );
}

Expand Down

0 comments on commit 6d672d7

Please sign in to comment.