Skip to content

Instantly share code, notes, and snippets.

@zachshallbetter
Created June 28, 2013 17:56
Show Gist options
  • Save zachshallbetter/5886663 to your computer and use it in GitHub Desktop.
Save zachshallbetter/5886663 to your computer and use it in GitHub Desktop.
Wraping interface to plugins.
function Datepicker($el) {
this.$el = $el;
}
Datepicker.prototype = {
hide: function() {
this.$el.datepicker('hide');
},
show: function() {
this.$el.datepicker('show');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment