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

Function jqLiteExpandoStore

test/angular/1.4/angular.js:2934–2944  ·  view source on GitHub ↗
(element, createIfNecessary)

Source from the content-addressed store, hash-verified

2932
2933
2934function jqLiteExpandoStore(element, createIfNecessary) {
2935 var expandoId = element.ng339,
2936 expandoStore = expandoId && jqCache[expandoId];
2937
2938 if (createIfNecessary && !expandoStore) {
2939 element.ng339 = expandoId = jqNextId();
2940 expandoStore = jqCache[expandoId] = {events: {}, data: {}, handle: undefined};
2941 }
2942
2943 return expandoStore;
2944}
2945
2946
2947function 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