Created
April 1, 2014 13:43
-
-
Save THEtheChad/9914225 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var s = s_gi(s_mpcs_account); | |
// set defaults here | |
function S(){ | |
if(!(this instanceof S)) return new S(); | |
} | |
S.prototype = s; | |
// your code below | |
var s1 = S(); | |
s1.prop1 = 'type1'; | |
s1.prop2 = 'type2'; | |
s1.t(); | |
var s2 = S(); | |
s2.events = 'event5'; | |
s2.eVar1 = 'Social Site'; | |
s2.tl(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment