File tree 1 file changed +8
-2
lines changed 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 40
40
/**
41
41
*
42
42
* @private
43
+ *
44
+ * @return {String } Trimmed string
43
45
*
44
46
* Trim whitespace from the front and back of a string
45
47
*/
51
53
* @private
52
54
* @param {String } string The string to be converted
53
55
*
56
+ * @return {String } Camelized string
57
+ *
54
58
* Convert underscored string into camelcase (taken from undescore.string.js)
55
59
*/
56
60
camelize = function ( string ) {
61
65
/**
62
66
*
63
67
* @private
64
- * @param {String } string The string to be converted
68
+ * @param {String } string The string to be converted
69
+ *
70
+ * @return {String } Underscored string
65
71
*
66
72
* Convert camelcased string into underscored (taken from undescore.string.js)
67
73
*/
77
83
* @private
78
84
* @binding {Backbone.RailsModel}
79
85
* @param {String } type Type of association to create
86
+ *
80
87
* @return {Function } to iterate over associations and create them
81
88
*
82
89
* Creates the associated model and populates it with data
140
147
}
141
148
142
149
} ) ;
143
-
144
150
} ) ( ) ;
You can’t perform that action at this time.
0 commit comments