ether-polyfill-js
v0.0.7
Published
polyfill js for weChat, huanbei or H5
Downloads
2
Readme
ether-polyfill-js
http://wiki.caijj.net/pages/viewpage.action?pageId=95922746
Example Usage
npm install --save ether-polyfill-js
import { jumpTo, shareTo, Loading, Toast } from 'ether-polyfill-js';
const onclick = function () {
jumpTo('http://www.baidu.com?search=1');
};
const onShare = function () {
shareTo({ sharePlatform: 'WeChat' });
};
const onLoading = function () {
Loading.show('加载中');
setTimeout(() => {
Loading.hide();
}, 5000);
};
// the third parameter should be greater than 1000
const onToast = () => {
Toast.info('密码错误', '剩余4次机会哦', 1000);
};