~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/media/common/util.js

  • Committer: mattgiuca
  • Date: 2008-01-17 03:24:33 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:239
browser.js: Fixed array loop, made normal for loop (for each loops break
    after adding methods to array, silly bugger)
util.js: minor

Show diffs side-by-side

added added

removed removed

Lines of Context:
506
506
Array.prototype.removeall = function(val)
507
507
{
508
508
    var i, j;
509
 
    arr = this;
 
509
    var arr = this;
510
510
    j = 0;
511
511
    for (i=0; i<arr.length; i++)
512
512
    {