Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New registry #39

Merged
merged 26 commits into from
Dec 23, 2011
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8a7c569
registry rewrite, closes #19, closes #34
rvagg Nov 25, 2011
04df8dc
move customEvents back down
rvagg Nov 25, 2011
b76786f
Merge branch 'master' into newregistry
rvagg Nov 25, 2011
16f8244
Merge branch 'master' into newregistry
rvagg Nov 25, 2011
e3ebc4b
broken merge
rvagg Nov 25, 2011
8caf6cd
cleanup and speedup
rvagg Nov 28, 2011
b644594
partial roll-back of #27
rvagg Nov 28, 2011
9318e5c
added benchmarks.html to test changes
rvagg Nov 28, 2011
591f4df
Merge remote-tracking branch 'fat/master' into newregistry
rvagg Dec 2, 2011
195dd32
registry.has() optimisations
rvagg Dec 3, 2011
4027c46
multi-library benchmarks based on @fat's benchmark.js work
rvagg Dec 3, 2011
f8b0312
\t
rvagg Dec 3, 2011
de39ff9
more benchmark work + nano-timer applet
rvagg Dec 4, 2011
befa148
closes #44
rvagg Dec 4, 2011
b2e1168
Merge remote-tracking branch 'fat/master' into newregistry
rvagg Dec 5, 2011
65b7618
added 3 sequence benchmarks, add/fire/remove
rvagg Dec 5, 2011
1976bcb
a few more comments
rvagg Dec 5, 2011
98a33c4
Skipping non-standard layerX and layerY. Reference to the original ev…
Dec 15, 2011
2cb0e08
Instead of targeting screex(x/y) properties in the if statement, norm…
Dec 16, 2011
d6d0f97
style change, no-semicolon, comma-first
rvagg Dec 20, 2011
bc1a4c9
Merge remote-tracking branch 'paulredmond/layerX-layerY' into newregi…
rvagg Dec 20, 2011
495c252
remove() and other fixes + more tests + cleanup
rvagg Dec 23, 2011
9ca51be
readme fixes
rvagg Dec 23, 2011
792f3af
Merge remote-tracking branch 'fat/master' into newregistry
rvagg Dec 23, 2011
0d45565
stop() yay!
rvagg Dec 23, 2011
909e5c0
Merge remote-tracking branch 'fat/master' into newregistry
rvagg Dec 23, 2011
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@
[submodule "support/qwery"]
path = support/qwery
url = git@github.com:ded/qwery.git
[submodule "support/nwevents"]
path = support/nwevents
url = https://github.com/dperini/nwevents.git
6 changes: 4 additions & 2 deletions bean.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
else if (typeof define == 'function' && typeof define.amd == 'object') define(definition);
else this[name] = definition();
}('bean', function () {
var win = window,
var context = this,
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was in the noConflict PR I put in, I needed noConflict() to work so I could test bean.js (old) against src/bean.js (new).

old = this.bean,
win = window,
__uid = 1,
registry = {},
collected = {},
Expand Down Expand Up @@ -346,4 +348,4 @@
};

return bean;
});
});
Loading