Skip to content

Commit 0a438ef

Browse files
committed
feat(release): fixed resource bug and publish a new release
1 parent 45af4ee commit 0a438ef

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "kityminder-core",
33
"title": "Kity Minder Core",
44
"description": "Powerful online mind graphic visualization and editor (command based)",
5-
"version": "1.4.35",
5+
"version": "1.4.36",
66
"main": [
77
"dist/kityminder.core.min.js",
88
"dist/kityminder.core.css"

dist/kityminder.core.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* ====================================================
3-
* kityminder - v1.4.35 - 2017-02-03
3+
* kityminder - v1.4.36 - 2017-03-10
44
* https://github.com/fex-team/kityminder-core
55
* GitHub: https://github.com/fex-team/kityminder-core.git
66
* Copyright (c) 2017 Baidu FEX; Licensed MIT
@@ -1969,7 +1969,7 @@ _p[19] = {
19691969
this.fire("finishInitHook");
19701970
}
19711971
});
1972-
Minder.version = "1.4.33";
1972+
Minder.version = "1.4.36";
19731973
Minder.registerInitHook = function(hook) {
19741974
_initHooks.push(hook);
19751975
};
@@ -6660,7 +6660,7 @@ _p[57] = {
66606660
getResourceColor: function(resource) {
66616661
var colorMapping = this._getResourceColorIndexMapping();
66626662
var nextIndex;
6663-
if (!colorMapping.hasOwnProperty(resource)) {
6663+
if (!colorMapping.__proto__.hasOwnProperty(resource)) {
66646664
// 找不到找下个可用索引
66656665
nextIndex = this._getNextResourceColorIndex();
66666666
colorMapping[resource] = nextIndex;

dist/kityminder.core.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "kityminder",
33
"title": "kityminder",
44
"description": "KityMinder Core Implement",
5-
"version": "1.4.35",
5+
"version": "1.4.36",
66
"homepage": "https://github.com/fex-team/kityminder-core",
77
"author": {
88
"name": "Baidu FEX",

src/core/minder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ define(function(require, exports, module) {
3030
}
3131
});
3232

33-
Minder.version = '1.4.33';
33+
Minder.version = '1.4.36';
3434

3535
Minder.registerInitHook = function(hook) {
3636
_initHooks.push(hook);

0 commit comments

Comments
 (0)