Skip to content

Commit

Permalink
0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Houfeng committed Nov 8, 2015
1 parent 3e93a73 commit b1778ed
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
## 0.1.3
1. 默认缩进调整为 4 个空格
2. 修正两个 insert*** 方法的拼写错误
## 0.1.4
1. 修正两个 insert*** 方法的拼写错误

## 0.1.2
1. 增加快捷键(可以自定义)
Expand Down
2 changes: 1 addition & 1 deletion build/css/mditor.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* mditor , 一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器
* @version v0.1.3
* @version v0.1.4
* @homepage http://houfeng.net/mditor
* @license MIT
* @author Houfeng
Expand Down
2 changes: 1 addition & 1 deletion build/css/mditor.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions build/js/mditor.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* mditor , 一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器
* @version v0.1.3
* @version v0.1.4
* @homepage http://houfeng.net/mditor
* @license MIT
* @author Houfeng
Expand Down Expand Up @@ -347,14 +347,14 @@ var Mditor = window.Mditor = module.exports = function (editor, options) {
self._bindCommands();
};

Mditor.version = "0.1.3";
Mditor.version = "0.1.4";

Mditor.prototype._init = function () {
var self = this;
self.platform = navigator.platform.toLowerCase();
self.EOL = self.platform == 'win32' ? '\r\n' : '\n';
self.CMD = self.platform.indexOf('mac') > -1 ? 'command' : 'ctrl';
self.INDENT = ' ';
self.INDENT = '\t';
return self;
};

Expand Down
4 changes: 2 additions & 2 deletions build/js/mditor.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Mditor.prototype._init = function () {
self.platform = navigator.platform.toLowerCase();
self.EOL = self.platform == 'win32' ? '\r\n' : '\n';
self.CMD = self.platform.indexOf('mac') > -1 ? 'command' : 'ctrl';
self.INDENT = ' ';
self.INDENT = '\t';
return self;
};

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mditor",
"version": "0.1.3",
"version": "0.1.4",
"description": "一个简洁、易于集成、方便扩展、期望舒服的编写 markdown 的编辑器",
"main": "./lib/index.js",
"scripts": {
Expand Down

0 comments on commit b1778ed

Please sign in to comment.