Changeset 111

Show
Ignore:
Timestamp:
12/19/06 16:07:04 (2 years ago)
Author:
e.@brainspl.at
Message:

fix mup.js to append px to the width so progress bar works.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • examples/sample_app/dist/public/javascripts/mup.js

    r83 r111  
    4747    update: function(status, statusHTML) { 
    4848      this.statusText.innerHTML = statusHTML; 
    49       this.statusBar.style.width = Math.floor(this.statusBarWidth * status)
     49      this.statusBar.style.width = Math.floor(this.statusBarWidth * status) + 'px'
    5050    }, 
    5151