When loading groups, JS loads before CSS. I may be mistaken, but it’s bad practice to have the JS load before the CSS.
The CSS should be loaded before the JS.
To accomplish this, do the following in libraries/carabiner.php: (Lines 516-522)
default:
if( isset($this->css[$flag]) && ($group_filter == NULL || $group_filter == 'css') )
$this->_display_css($flag);
if( isset($this->js[$flag]) && ($group_filter == NULL || $group_filter == 'js') )
$this->_display_js($flag);
break;Basically swapping lines 517-518 with 520-521.