无法使Angular-Gridster成功

时间:2015-03-15 08:56:29

标签: angularjs gridster

我正在尝试实施Angular-Gridster,但我不能让这个例子为我工作。

似乎gridster模块没有被注入任何地方或什么

<div gridster="gridsterOpts">

This is the fiddle

Github source

Angular-Gridster site

The example I'm trying to implement

1 个答案:

答案 0 :(得分:2)

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

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

另请注意,JSFIDDE不会将您的gridster源加载到head:拒绝执行脚本,因此请直接添加到您的代码中以查看结果。