Skip to content
This repository has been archived by the owner on Mar 25, 2019. It is now read-only.

Commit

Permalink
adding some stub files
Browse files Browse the repository at this point in the history
  • Loading branch information
getify committed Jun 11, 2012
1 parent 8c22449 commit 95ac572
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
9 changes: 9 additions & 0 deletions core.h5api.js
@@ -0,0 +1,9 @@
/*! core.H5api.js | (c) Kyle Simpson | MIT License: http://getify.mit-license.org */

(function(global){

global.H5 = {
// TODO: fill in core API functions
};

})(this);
2 changes: 2 additions & 0 deletions h5api.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions xhr.h5api.js
@@ -0,0 +1,11 @@
/*! xhr.H5api.js | (c) Kyle Simpson | MIT License: http://getify.mit-license.org */

(function(H5){

if (!H5) throw new Error("xhr.H5api: core.H5api required but missing.");

H5.xhr = function(opts) {
// TODO: fill in how xhr.H5api works
};

})(this.H5);

0 comments on commit 95ac572

Please sign in to comment.