@mixd-id/web-scaffold 0.1.230406163 → 0.1.230406164

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@mixd-id/web-scaffold",
3
3
  "private": false,
4
- "version": "0.1.230406163",
4
+ "version": "0.1.230406164",
5
5
  "scripts": {
6
6
  "dev": "vite serve",
7
7
  "build": "vite build",
@@ -66,12 +66,8 @@ export default{
66
66
  },
67
67
 
68
68
  fbShareUrl(){
69
- const url = `https://www.facebook.com/dialog/share?app_id=${this.config.fbAppId}&display=popup&href=` +
70
- encodeURIComponent(this.currentUrl);
71
-
72
- console.log('fbShareUrl', url)
73
-
74
- return url
69
+ return `https://www.facebook.com/dialog/share?app_id=${this.config.fbAppId}&display=popup&href=` +
70
+ encodeURIComponent(this.currentUrl)
75
71
  },
76
72
 
77
73
  waShareUrl(){
@@ -81,15 +77,11 @@ export default{
81
77
  else
82
78
  url = `https://web.whatsapp.com/send?text=` + encodeURIComponent(this.currentUrl)
83
79
 
84
- console.log('waShareUrl', url)
85
-
86
80
  return url
87
81
  },
88
82
 
89
83
  twitterShareUrl(){
90
- const url = `https://twitter.com/intent/tweet?url=` + encodeURIComponent(this.currentUrl)
91
- console.log('twitterShareUrl', url)
92
- return url
84
+ return `https://twitter.com/intent/tweet?url=` + encodeURIComponent(this.currentUrl)
93
85
  },
94
86
 
95
87
  instagramShareUrl(){