Update wechat.html
Browse files- wechat.html +1 -2
wechat.html
CHANGED
@@ -295,10 +295,9 @@ function getParams(paras){
|
|
295 |
}
|
296 |
|
297 |
$(function(){
|
298 |
-
var taowords = decodeURIComponent(getParams('taowords'));
|
299 |
var url = decodeURIComponent(getParams('url'));
|
300 |
var image = Base64.decode(decodeURIComponent(getParams('image')));
|
301 |
-
var
|
302 |
$('#img').attr('src', image);
|
303 |
$('#coupons').attr('href',url);
|
304 |
$('#copy').attr('data-clipboard-text', taowords);
|
|
|
295 |
}
|
296 |
|
297 |
$(function(){
|
|
|
298 |
var url = decodeURIComponent(getParams('url'));
|
299 |
var image = Base64.decode(decodeURIComponent(getParams('image')));
|
300 |
+
var words = Base64.decode(decodeURIComponent(getParams('words')));
|
301 |
$('#img').attr('src', image);
|
302 |
$('#coupons').attr('href',url);
|
303 |
$('#copy').attr('data-clipboard-text', taowords);
|