d3f10ab6 by Michael Richards

Set an empty object for default formatters configuration.

1 parent 751de7b5
...@@ -32,7 +32,7 @@ class Rivets.Binding ...@@ -32,7 +32,7 @@ class Rivets.Binding
32 for formatter in @formatters 32 for formatter in @formatters
33 args = formatter.split /\s+/ 33 args = formatter.split /\s+/
34 id = args.shift() 34 id = args.shift()
35 value = if Rivets.config.formatters && Rivets.config.formatters[id] 35 value = if Rivets.config.formatters[id]
36 Rivets.config.formatters[id] value, args... 36 Rivets.config.formatters[id] value, args...
37 else 37 else
38 @model[id] value, args... 38 @model[id] value, args...
...@@ -194,6 +194,7 @@ Rivets.routines = ...@@ -194,6 +194,7 @@ Rivets.routines =
194 # Default configuration. 194 # Default configuration.
195 Rivets.config = 195 Rivets.config =
196 preloadData: true 196 preloadData: true
197 formatters: {}
197 198
198 # The rivets module. This is the public interface that gets exported. 199 # The rivets module. This is the public interface that gets exported.
199 rivets = 200 rivets =
......