askbot-dragon 1.8.33-beta → 1.8.34-beta

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": "askbot-dragon",
3
- "version": "1.8.33-beta",
3
+ "version": "1.8.34-beta",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -240,6 +240,10 @@ export default {
240
240
  userId: {
241
241
  type: String,
242
242
  default: ''
243
+ },
244
+ isLining:{
245
+ type: Boolean,
246
+ default: false
243
247
  }
244
248
  },
245
249
  components: {
@@ -310,6 +314,9 @@ export default {
310
314
  url = this.watermark.textWatermarkValue ? (url += '&textWatermarkValue=' + this.watermark.textWatermarkValue) : url
311
315
  url = this.watermark.visitorWatermarkValue ? (url += '&visitorWatermarkValue=' + this.watermark.visitorWatermarkValue) : url
312
316
  }
317
+ if (this.isLining){
318
+ url += '&isLining=true'
319
+ }
313
320
  let mainId = sessionStorage.getItem('_mainId')
314
321
  let userId = sessionStorage.getItem('_currentUserId')
315
322
  let test = process.env.VUE_APP_ENV === 'production'