mirror of
https://github.com/QuasarApp/SoundBand.git
synced 2025-05-01 01:34:33 +00:00
19 lines
343 B
JavaScript
19 lines
343 B
JavaScript
|
function Controller()
|
||
|
{
|
||
|
installer.uninstallationFinished.connect(this, Controller.prototype.uninstallationFinished);
|
||
|
installer.installationFinished.connect(this, Controller.prototype.installationFinished);
|
||
|
}
|
||
|
|
||
|
|
||
|
Controller.prototype.uninstallationFinished = function()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
Controller.prototype.installationFinished = function()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|