askbot-dragon 1.3.39 → 1.3.40
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
|
@@ -141,8 +141,10 @@ export default {
|
|
|
141
141
|
// a.href = res.data
|
|
142
142
|
// a.download = (this.title) + fileType
|
|
143
143
|
// a.dispatchEvent(new MouseEvent('click', { bubbles: true, cancelable: true, view: window }))
|
|
144
|
-
window.open(res.data)
|
|
145
144
|
this.close()
|
|
145
|
+
setTimeout(() =>{
|
|
146
|
+
window.open(res.data)
|
|
147
|
+
}, 1000)
|
|
146
148
|
}
|
|
147
149
|
}
|
|
148
150
|
})
|