Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Fixing latest path problems in modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Anachron committed Mar 25, 2014
1 parent 5d26310 commit 4545dc9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions assets/javascripts/app.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require ['common'], () ->
app.addRegions({
'MainRegion': '#main'
})
###

app.MainRegion.show(
new TodoView({
'model': new TodoModel({
Expand All @@ -29,4 +29,4 @@ require ['common'], () ->
})
)

console.log app.MainRegion###
console.log app.MainRegion
2 changes: 1 addition & 1 deletion assets/javascripts/app/collections/TodoList.coffee
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
define [
'backbone',
'/javascripts/app/models/Todo'
'j/app/models/Todo'
], (Backbone, TodoModel) ->

TodoListCollection = Backbone.Collection.extend({
Expand Down
6 changes: 3 additions & 3 deletions assets/javascripts/app/views/collections/TodoList.coffee
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
define [
'backbone',
'marionette',
'/javascripts/app/views/items/TodoListItem',
'hbs!/templates/app/collections/TodoListTemplate'
'backbone.marionette',
'j/app/views/items/TodoListItem',
'hbs!t/app/collections/TodoListTemplate'
], (Backbone, Marionette, TodoListItemView, TodoListTemplate) ->

TodoListView = Marionette.CollectionView.extend({
Expand Down

0 comments on commit 4545dc9

Please sign in to comment.