Thank you,
Hope this function will have in next version of wink
.
I found a problem with coverflow library (sorry if it isn’t a bug).
I create a properties object with position = 0 like this
var properties = { covers: covers, size: size, position: 0
…….
}
var coverflow = new wink.ui.xyz.CoverFlow(properties); $(“container”).appendChild(coverflow.getDomNode());
I hope cover item with position 0 will be choosed but I saw middle cover item was choosed.
Maybe line 407 in _initProperties function has a mistake
this._currentPosition = this.position || Math.floor(this.covers.length / 2);
position = 0 therefore _currentPosition = Math.floor(this.covers.length / 2)
I have just worked with wink for few days but I love this library, very easy, very robust.
Sorry for my bad english.
Thank you