Changeset 51123
- Timestamp:
- 06/08/2021 11:12:23 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/media/views/uploader/status.js
r50352 r51123 97 97 }); 98 98 99 this.$index.text( index + 1 ); 100 this.$total.text( queue.length ); 101 this.$filename.html( active ? this.filename( active.get('filename') ) : '' ); 99 if ( this.$index && this.$total && this.$filename ) { 100 this.$index.text( index + 1 ); 101 this.$total.text( queue.length ); 102 this.$filename.html( active ? this.filename( active.get('filename') ) : '' ); 103 } 102 104 }, 103 105 /**
Note: See TracChangeset
for help on using the changeset viewer.