(item_id, type, title, callback)
| 237 | } |
| 238 | |
| 239 | function addItem(item_id, type, title, callback) { |
| 240 | return withMandatory("item_id", item_id, function () { |
| 241 | var url = itemUrl(item_id, title, type); |
| 242 | jsonpCall(url, callback); |
| 243 | }); |
| 244 | } |
| 245 | |
| 246 | |
| 247 |
nothing calls this directly
no test coverage detected