version bump
This commit is contained in:
Matthew Scragg 2014-11-11 12:46:07 -06:00
父節點 863de00a14
當前提交 7aa0ef7af5
共有 2 個檔案被更改,包括 6 行新增5 行删除

查看文件

@ -57,7 +57,7 @@ $(function(){
aced.editor.focus();
});
$("#delete-draft-btn").click(function() {
$("#delete-page-btn").click(function() {
bootbox.alert("Not Done Yet! Sorry");
});
});
@ -82,12 +82,13 @@ var aced = new Aced({
data: data,
dataType: 'json'
}).always(function(data, status, error) {
if (data && data['error']) {
var res = data['responseJSON'];
if (res && res['error']) {
$page_name.addClass('parsley-error');
bootbox.alert("<h3>" + data['message'] + "</h3>");
bootbox.alert("<h3>" + res['message'] + "</h3>");
} else {
location.href = path;
}
});
}
});
});

查看文件

@ -1 +1 @@
__version__ = '0.4.5'
__version__ = '0.4.6'