Skip to content

Instantly share code, notes, and snippets.

@BlueHotDog
Created November 25, 2010 13:10
Show Gist options
  • Save BlueHotDog/715369 to your computer and use it in GitHub Desktop.
Save BlueHotDog/715369 to your computer and use it in GitHub Desktop.
test
<script type="text/javascript">
function global() { alert("global");}
GroupGifts = {};
GroupGifts.Invitations = {};
GroupGifts.test = function() {
global();
};
(function(){
this.testing = function() {
alert("aaa");
};
}).call(GroupGifts);
GroupGifts.Invitations.EmailOverlay = function() {
}.call(GroupGifts.Invitations.EmailOverlay);
GroupGifts.test();
GroupGifts.testing();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment