Skip to content

Instantly share code, notes, and snippets.

View shithee's full-sized avatar
:octocat:
On to Big thing.

Shitheesh shithee

:octocat:
On to Big thing.
View GitHub Profile
@iegik
iegik / bootstrap-editor.js
Created July 9, 2012 13:08
Bootstrap HTML5 Editor
$.fn.editable = function(options) {
var opts = $.extend({}, $.fn.editable.defaults, options);
return this.each(function() {
this.style.webkitApperiance = 'textarea';
this.contentEditable=true;
});
}
$.fn.editable.defaults = {
}