无法使 Angular-Gridster 示例工作

Cant make Angular-Gridster example work

我正在尝试实施 Angular-Gridster,但我无法找到适用于我的示例。

gridster 模块似乎没有被注入到任何地方或其他地方

<div gridster="gridsterOpts">

This is the fiddle

Github source

Angular-Gridster site

The example I'm trying to implement

您在声明应用程序的地方忘记指定 gridster 依赖项。所以应该是这样的:

var app = angular.module('myApp', ['gridster']);

另请注意,JSFIDDE 不会在 head: Refused to execute script from 中加载您的 gridster 源代码,因此请直接添加到您的代码中以查看结果。