@jx3box/jx3box-editor 1.9.7 → 1.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-editor",
3
- "version": "1.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "JX3BOX Article & Editor",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -7,7 +7,7 @@
7
7
  <meta name="renderer" content="webkit" />
8
8
  <title><%= htmlWebpackPlugin.options.title %></title>
9
9
  <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
10
- <script src="https://oss.jx3box.com/static/tinymce/tinymce.min.js?v=1.8.9"></script>
10
+ <script src="https://cdn.jx3box.com/static/tinymce/tinymce.min.js?v=1.8.9"></script>
11
11
  <!-- TODO: -->
12
12
  <!-- <script src="http://localhost:3000/tinymce.min.js"></script> -->
13
13
  </head>
package/src/Item.vue CHANGED
@@ -139,7 +139,7 @@
139
139
  ></div>
140
140
  <!-- 最大耐久度 -->
141
141
  <div
142
- v-if="source.AucGenre >= 1 && source.AucGenre <= 3"
142
+ v-if="source.AucGenre >= 1 && source.AucGenre <= 3 && source.MaxDurability"
143
143
  class="u-max-durability"
144
144
  v-text="'最大耐久度' + source.MaxDurability"
145
145
  ></div>
package/src/Tinymce.vue CHANGED
@@ -63,7 +63,7 @@ export default {
63
63
 
64
64
  // 样式
65
65
  // TODO:
66
- content_css: process.env.VUE_APP_DEV_COMPONENT == 'true' ? '/css/article.css' : `https://oss.jx3box.com/static/jx3box-editor/css/article.css`,
66
+ content_css: process.env.VUE_APP_DEV_COMPONENT == 'true' ? '/css/article.css' : `https://cdn.jx3box.com/static/jx3box-editor/css/article.css`,
67
67
  // content_css: `http://localhost:3000/skins/content/default/content.min.css`,
68
68
  body_class: "c-article c-article-editor c-article-tinymce",
69
69
  height: this.height || 800,
package/vue.config.js CHANGED
@@ -64,7 +64,7 @@ module.exports = {
64
64
  devServer: {
65
65
  proxy: {
66
66
  "/api/cms": {
67
- "target": process.env["DEV_SERVER"] == "true" ? "http://localhost:5120" : "https://cms.jx3box.com",
67
+ "target": process.env["DEV_SERVER"] == "true" ? "http://localhost:7100" : "https://cms.jx3box.com",
68
68
  "onProxyReq": function (request) {
69
69
  request.setHeader("origin", "");
70
70
  }