Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created March 5, 2010 18:58
Show Gist options
  • Select an option

  • Save jpoz/323012 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/323012 to your computer and use it in GitHub Desktop.
structure: function(options) {
var div = $('<div/>', {
css: {
'text-align':'center', 'background':options.color, 'color':'white',
'padding':'5px', 'margin':'5px', 'width': '140px', 'display': 'inline'
},
html: options.innerText
});
return div;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment