This commit is contained in:
Adrian 2014-11-14 11:11:36 +01:00
parent a7e2678da8
commit 09db8cdf16
3 changed files with 6 additions and 2 deletions

View file

@ -133,6 +133,10 @@ It is easy customizable, i.e. when you want to use Bootstrap 3 and "real" side-b
# Changelog
### v0.3.1
* JS event fix
### v0.3.0
* version bump

View file

@ -112,7 +112,7 @@ $.fn.extend({
updateScroll();
});
$markdownx_editor.on('keyup change', function() {
$markdownx_editor.on('keyup', function() {
markdownify();
});

View file

@ -6,7 +6,7 @@ if 'vagrant' in str(os.environ):
setup(
name='django-markdownx',
version='0.3.0',
version='0.3.1',
packages=find_packages(),
include_package_data=True,
description='Simple markdown editor (with live preview and images uploads) built for Django',