Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wagenet committed May 18, 2012
0 parents commit 4817b8a
Show file tree
Hide file tree
Showing 5 changed files with 20,686 additions and 0 deletions.
18 changes: 18 additions & 0 deletions app.js
@@ -0,0 +1,18 @@
YardViewer = Ember.Application.create({

load: function(data) {
data["@graph"].forEach(function(item) {
if (item.type === 'module') {
var module = YardViewer.Module.create(item);
YardViewer.modulesController.pushObject(module);
}
});
}

});

YardViewer.Module = Ember.Object.extend();

YardViewer.modulesController = Ember.ArrayProxy.create({
content: []
});

0 comments on commit 4817b8a

Please sign in to comment.