@@ -142,9 +142,9 @@ jQuery.mvc.model
142
142
----------------
143
143
144
144
The model singleton assumes the following responsibilities:
145
- * Maintaining a cache of data proxy instances.
146
- * Providing methods for registering, unregistering and retrieving data proxies.
147
- * Notifiying data proxies when they are registered or removed.
145
+ - Maintaining a cache of data proxy instances.
146
+ - Providing methods for registering, unregistering and retrieving data proxies.
147
+ - Notifiying data proxies when they are registered or removed.
148
148
149
149
### jQuery.mvc.model.register( [ name] , proxy, options, [ data] )
150
150
@@ -194,9 +194,9 @@ jQuery.mvc.view
194
194
---------------
195
195
196
196
The view singleton assumes the following responsibilities:
197
- * Maintaining a cache of view mediator instances.
198
- * Providing methods for registering, unregistering or retrieving view mediators.
199
- * Notifiying view mediators when they are registered or unregistered.
197
+ - Maintaining a cache of view mediator instances.
198
+ - Providing methods for registering, unregistering or retrieving view mediators.
199
+ - Notifiying view mediators when they are registered or unregistered.
200
200
201
201
### jQuery.mvc.view.register( [ name] , mediator, options, [ element] )
202
202
@@ -250,9 +250,9 @@ jQuery.mvc.controller
250
250
---------------------
251
251
252
252
The controller singleton assumes these responsibilities:
253
- * Maintaining a cache of constructor functions for commands intended to handle notifications.
254
- * Registering itself as an observer for each notification that it receives a command mapping for.
255
- * Creating and executing instances of the proper command to handle an observed notification.
253
+ - Maintaining a cache of constructor functions for commands intended to handle notifications.
254
+ - Registering itself as an observer for each notification that it receives a command mapping for.
255
+ - Creating and executing instances of the proper command to handle an observed notification.
256
256
257
257
258
258
### jQuery.mvc.controller.register( notificationName, command, options )
@@ -294,10 +294,10 @@ jQuery.mvc.notifier
294
294
-------------------
295
295
296
296
The notifier assumes these responsibilities:
297
- * Managing the observer lists for each notification in the application.
298
- * Providing a method for attaching observers to a notification's observer list.
299
- * Providing a method for broadcasting a notification.
300
- * Notifying observers of a given notification when it is broadcast.
297
+ - Managing the observer lists for each notification in the application.
298
+ - Providing a method for attaching observers to a notification's observer list.
299
+ - Providing a method for broadcasting a notification.
300
+ - Notifying observers of a given notification when it is broadcast.
301
301
302
302
The notifier should not be used directly by the programmer, unless performing such activities as unit testing.
303
303
0 commit comments