Search code examples
angularjsgridster

Cant make Angular-Gridster example work


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">

This is the fiddle

Github source

Angular-Gridster site

The example I'm trying to implement


Solution

  • 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.