Skip to content

Instantly share code, notes, and snippets.

@tobitailor
Created July 15, 2010 21:43
Show Gist options
  • Save tobitailor/477570 to your computer and use it in GitHub Desktop.
Save tobitailor/477570 to your computer and use it in GitHub Desktop.
def ("SlideStreamer") ({
init: function(url){
var0 = url; // global variable
this.var1 = url; // public variable
var var2 = url; // private variable
this.next = function(){
alert("Public function..\nvar0 = " + var0); // "timing.xml"
alert("Public function..\nvar1 = " + this.var1); // "timing.xml"
alert("Public function..\nvar2 = " + var2); // "timing.xml"
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment