MCPcopy Index your code
hub / github.com/angular-ui/ui-router / jqLiteExpandoStore

Function jqLiteExpandoStore

test/angular/1.5/angular.js:3096–3106  ·  view source on GitHub ↗
(element, createIfNecessary)

Source from the content-addressed store, hash-verified

3094
3095
3096function jqLiteExpandoStore(element, createIfNecessary) {
3097 var expandoId = element.ng339,
3098 expandoStore = expandoId && jqCache[expandoId];
3099
3100 if (createIfNecessary && !expandoStore) {
3101 element.ng339 = expandoId = jqNextId();
3102 expandoStore = jqCache[expandoId] = {events: {}, data: {}, handle: undefined};
3103 }
3104
3105 return expandoStore;
3106}
3107
3108
3109function jqLiteData(element, key, value) {

Callers 3

jqLiteOffFunction · 0.70
jqLiteDataFunction · 0.70
angular.jsFile · 0.70

Calls 1

jqNextIdFunction · 0.70

Tested by

no test coverage detected