Have a look at the following piece of code in ListViewSwipe.js:
domStyle.set(this.foreElement, { transform: "translate3d(" + position + "px, 0, 0)" });
Transform results in swiping of the this.foreElement (which is in your case the day and daynumber).
You could do 2 things:
- Remove the transform function
- Specify another element instead of this.ForeElement
Let me know if you managed to get it work!
Nobody???
|I thought there were all clever developers here :)