20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
class Portfolio extends Window {
|
|
constructor() {
|
|
super('portfolio')
|
|
}
|
|
|
|
handleDialog() {
|
|
if (!indicator.computerIndicatorShown) {
|
|
indicator.hide('portfolio')
|
|
dialog.display('other')
|
|
|
|
indicator.computerIndicatorShown = true;
|
|
indicator.tvIndicatorShown = true;
|
|
indicator.guitarIndicatorShown = true;
|
|
|
|
indicator.show('computer')
|
|
indicator.show('tv')
|
|
indicator.show('guitar')
|
|
}
|
|
}
|
|
}
|