(element, name)
| 3338 | } |
| 3339 | |
| 3340 | function jqLiteRemoveData(element, name) { |
| 3341 | var expandoId = element.ng339; |
| 3342 | var expandoStore = expandoId && jqCache[expandoId]; |
| 3343 | |
| 3344 | if (expandoStore) { |
| 3345 | if (name) { |
| 3346 | delete expandoStore.data[name]; |
| 3347 | } else { |
| 3348 | expandoStore.data = {}; |
| 3349 | } |
| 3350 | |
| 3351 | removeIfEmptyData(element); |
| 3352 | } |
| 3353 | } |
| 3354 | |
| 3355 | |
| 3356 | function jqLiteExpandoStore(element, createIfNecessary) { |
no test coverage detected