Hi,
I'm using on my themes jquery from the google cdn, is there a way to prevent gravity from loading its own copy and use the registered and loaded one instead?
this is how jquery is loaded in my theme:
wp_register_script( 'jQuery-cdn', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js', null, '1.7.1', false );
wp_enqueue_script( 'jQuery-cdn' );
I also think it looks cleaner if styles are outputted in the head section instead of in the widget itself.
Thanks!