Commit af391fc8 authored by Taddeus Kroes's avatar Taddeus Kroes

Re-added some parantheses where stuff was broken

parent a5d3e50b
...@@ -318,7 +318,7 @@ AppView = Backbone.View.extend ...@@ -318,7 +318,7 @@ AppView = Backbone.View.extend
# Main # Main
# #
Settings = new do Backbone.Model.extend Settings = new (Backbone.Model.extend
defaults: defaults:
day: 0 day: 0
favourite_channels: load_stored_list(STORAGE_CHANNELS, DEFAULT_CHANNELS) favourite_channels: load_stored_list(STORAGE_CHANNELS, DEFAULT_CHANNELS)
...@@ -339,10 +339,12 @@ Settings = new do Backbone.Model.extend ...@@ -339,10 +339,12 @@ Settings = new do Backbone.Model.extend
isFavouriteProgram: (title) -> isFavouriteProgram: (title) ->
_.contains(@get('favourite_programs'), title) _.contains(@get('favourite_programs'), title)
)()
Clock = new do -> Clock = new (->
_.extend(@, Backbone.Events) _.extend(@, Backbone.Events)
setInterval((=> @trigger('tick')), 60 * 60 * 1000 / HOUR_WIDTH) setInterval((=> @trigger('tick')), 60 * 60 * 1000 / HOUR_WIDTH)
)()
Channels = new ChannelList() Channels = new ChannelList()
App = new AppView() App = new AppView()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment