Skip to content

Instantly share code, notes, and snippets.

@kapowaz
Created February 2, 2010 15:49
Show Gist options
  • Select an option

  • Save kapowaz/292759 to your computer and use it in GitHub Desktop.

Select an option

Save kapowaz/292759 to your computer and use it in GitHub Desktop.
var objDefaultOptions = {
alignment: 'left',
dismissable: true,
offset: -10,
content: '',
repeat: false,
duration: false
};
jQuery.fn.notification = function(objSuppliedOptions){
var options = objDefaultOptions;
jQuery.extend(options, objSuppliedOptions);
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment