You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having trouble getting module to work. I have a MEAN project built with the MEAN.JS framework for reference, and I'm on Angular 1.5. Here's what I did:
Installed with bower
Included angular-deckgrid.js in the all.js file
Inject angular-deckgrid.js into the controller:
function() {
'use strict';
angular.module('app.core').controller('coreArticleController', coreArticleController);
coreArticleController.$inject = ['$scope', 'Articles', 'Article_Categories', 'Article_Tags', 'Reviewers','akoenig.deckgrid'];
function coreArticleController($scope, Articles, Article_Categories, Article_Tags, Reviewers,akoenig.deckgrid) {....
In the html page, I have this:
{{article.title}}
....
I have the css created
When I run the page, it doesn't resolve {{article.title}} and it's not repeating based on the collection. Here's the find() function from the controller:
I'm having trouble getting module to work. I have a MEAN project built with the MEAN.JS framework for reference, and I'm on Angular 1.5. Here's what I did:
Installed with bower
Included angular-deckgrid.js in the all.js file
Inject angular-deckgrid.js into the controller:
function() {
'use strict';
angular.module('app.core').controller('coreArticleController', coreArticleController);
coreArticleController.$inject = ['$scope', 'Articles', 'Article_Categories', 'Article_Tags', 'Reviewers','akoenig.deckgrid'];
function coreArticleController($scope, Articles, Article_Categories, Article_Tags, Reviewers,akoenig.deckgrid) {....
In the html page, I have this:
{{article.title}}
....
I have the css created
When I run the page, it doesn't resolve {{article.title}} and it's not repeating based on the collection. Here's the find() function from the controller:
$scope.find = function() {
$scope.articles = Articles.query();
The text was updated successfully, but these errors were encountered: