adobe-webplatform / eve

Custom events…
http://dmitry.baranovskiy.com/eve/
Apache License 2.0
316 stars 111 forks source link

do not sort array of one element #14

Open DBJDBJ opened 11 years ago

DBJDBJ commented 11 years ago

eve.js line # 68

    indexed.sort( numsort ) ;

perhaps should be

  if ( indexed.length > 1) indexed.sort( numsort ) ;

Thanks