Skip to content

Instantly share code, notes, and snippets.

@davidchc
Created July 24, 2017 18:15
Show Gist options
  • Save davidchc/a2ab615ddb6acdc9ac680bd15ef18451 to your computer and use it in GitHub Desktop.
Save davidchc/a2ab615ddb6acdc9ac680bd15ef18451 to your computer and use it in GitHub Desktop.
var Cart = (function(){
var m = {};
m.init = function(){
jQuery(function(){
m.add();
m.update();
m.delete();
});
};
m.add = function(){
};
m.update = function(){
};
m.delete = function(){
};
return {
init : m.init
}
})();
Cart.init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment