I'm trying to implement Angular-Gridster, but I can't get the example to work for me.
It seems the gridster module doesn't get injected anywhere or something
<div gridster="gridsterOpts">
Where you declare the app you forget to specify the gridster dependency. So it should be like this:
var app = angular.module('myApp', ['gridster']);
Also note that JSFIDDE does not load your gridster source in head: Refused to execute script from, so add to your code direct to see the result.