Skip to content

Commit

Permalink
change logic to attach css to control side
Browse files Browse the repository at this point in the history
simple change in path logic
  • Loading branch information
DanielHindi authored Oct 27, 2017
1 parent e89a1e5 commit c73fa6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/buildfire.js
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ var buildfire = {
}
, attachCSSFiles: function () {
var files = ['styles/bootstrap.css'], base = '';
if (window.location.pathname.indexOf('/control/') > 0) {
if (window.location.pathname.indexOf('/control/') >= 0) {
files.push('styles/siteStyle.css') &&
files.push('styles/pluginScreen.css');
}
Expand Down

0 comments on commit c73fa6d

Please sign in to comment.