mirror of
https://github.com/DevLARLEY/WidevineProxy2.git
synced 2026-04-11 15:10:24 +00:00
10 lines
335 B
JavaScript
10 lines
335 B
JavaScript
import "../../protobuf.min.js";
|
|
import "../../license_protocol.js";
|
|
import { SettingsManager } from "../../util.js";
|
|
|
|
document.getElementById('fileInput').addEventListener('change', async (event) => {
|
|
const file = event.target.files[0];
|
|
await SettingsManager.loadRemoteCDM(file).then(() => {
|
|
window.close();
|
|
});
|
|
}); |