(element, name)
| 3292 | } |
| 3293 | |
| 3294 | function jqLiteRemoveData(element, name) { |
| 3295 | var expandoId = element.ng339; |
| 3296 | var expandoStore = expandoId && jqCache[expandoId]; |
| 3297 | |
| 3298 | if (expandoStore) { |
| 3299 | if (name) { |
| 3300 | delete expandoStore.data[name]; |
| 3301 | } else { |
| 3302 | expandoStore.data = {}; |
| 3303 | } |
| 3304 | |
| 3305 | removeIfEmptyData(element); |
| 3306 | } |
| 3307 | } |
| 3308 | |
| 3309 | |
| 3310 | function jqLiteExpandoStore(element, createIfNecessary) { |
no test coverage detected