added markdown editor

This commit is contained in:
Andy Miller
2014-09-18 17:58:47 -06:00
parent 2cb044ca5c
commit 9688901dfd
24 changed files with 17638 additions and 165 deletions

View File

@@ -0,0 +1,18 @@
$(function()
{
// selectize
$('select.fancy').selectize({
createOnBlur: true
});
$('input.fancy').selectize({
delimiter: ',',
persist: false,
create: function(input) {
return {
value: input,
text: input
}
}
});
});