Releases: finom/seemple
Releases · finom/seemple
v2.4.0
2.4.0 (2017-04-14)
Features
- calc: Allow to use promises via promiseCalcflag (dea2e987)
this.calc('a', ['b', 'c'], (b, c) => {
    return new Promise(resolve => {
        setTimeout(() => {
            resolve(a + b)
        }, 1000);
    });
}, { promiseCalc: true });
this.b = 1;
this.c = 2;
// "a" will be changed in a secondthis.calc('response', 'data', async (data) => {
    const resp = await fetch(url, {
        method: 'post',
        body: data
    });
    return resp.json();
}, { promiseCalc: true });v2.3.1
v2.3.0
v2.2.0
v2.1.1
v2.1.0
v2.0.2
v2.0.0
v2.0.0-beta.5
<a name"2.0.0-beta.5">
2.0.0-beta.5 (2016-10-18)
Bug Fixes
- Check for bindings existence when off method is called with no args (21fffe95)
v2.0.0-beta.4
<a name"2.0.0-beta.4">
2.0.0-beta.4 (2016-10-17)
Bug Fixes
- Remove all DOM events when off with no arg is called (8327ba07)