Skip to content

Instantly share code, notes, and snippets.

@pstjvn
pstjvn / App.js
Created May 7, 2011 12:33
Local music player app
window.addEvent('domready', function() {
//
// augment omni grid to allow finding the next song
//
omniGrid.implement({
findNext: function(randompos) {
if (randompos) {
ci = Math.floor(Math.random() * this.elements.length);
} else {
ci = this.getSelectedIndices()[0] + 1;