Theme breaks admin menu

Permalink 1 user found helpful
Hey I started working on a new theme using foundation framework, after I got it ready and the basic layout ready I logged in to the dashboard, and the site broke, and the header menu doesn't show any options.

The console error is:
Uncaught TypeError: Object [object Object] has no method 'hoverIntent'


The ccm.app.js file is minimized and I don't want to install uglifyjs and a bunch of crap just to fix some jquery issues. Has anyone else come across this or know of a way I can fix the admin menu?

 
martinboi replied on at Permalink Reply
I actually found the issue:

1. Moved this Before all custom scripts and styles in the header.
<?php Loader::element('header_required'); ?>

2. Moved this After custom scripts / styles in the footer. Just before body, and everything worked normally.
<?php Loader::element('footer_required'); ?>


Hope this helps someone.

(Strange stuff this large ccm.app.js file)