(element, name)
| 3403 | } |
| 3404 | |
| 3405 | function jqLiteRemoveData(element, name) { |
| 3406 | var expandoId = element.ng339; |
| 3407 | var expandoStore = expandoId && jqCache[expandoId]; |
| 3408 | |
| 3409 | if (expandoStore) { |
| 3410 | if (name) { |
| 3411 | delete expandoStore.data[name]; |
| 3412 | } else { |
| 3413 | expandoStore.data = {}; |
| 3414 | } |
| 3415 | |
| 3416 | removeIfEmptyData(element); |
| 3417 | } |
| 3418 | } |
| 3419 | |
| 3420 | |
| 3421 | function jqLiteExpandoStore(element, createIfNecessary) { |
no test coverage detected