1
0
mirror of https://github.com/videojs/video.js.git synced 2025-01-02 06:32:07 +02:00

fix(MapSham): fix set method to use map property (#7000)

This commit is contained in:
Armin 2020-12-18 01:49:17 +03:30 committed by GitHub
parent 11d37e28fd
commit a35a1217f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ class MapSham {
return has;
}
set(key, value) {
this.set_[key] = value;
this.map_[key] = value;
return this;
}
forEach(callback, thisArg) {