mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-01-16 06:01:56 +00:00
Change default webide save button state to 'SAVED'
This commit is contained in:
parent
d17bfce170
commit
7ec5a75bef
@ -32,7 +32,7 @@ export class WebideComponent implements OnInit {
|
|||||||
language = 'javascript';
|
language = 'javascript';
|
||||||
theme = 'monokai';
|
theme = 'monokai';
|
||||||
files: string[];
|
files: string[];
|
||||||
saveButtonState = 'DIRTY';
|
saveButtonState = 'SAVED';
|
||||||
command_handlers = { 'reload': this.reloadHandler.bind(this),
|
command_handlers = { 'reload': this.reloadHandler.bind(this),
|
||||||
'read': this.readHandler.bind(this),
|
'read': this.readHandler.bind(this),
|
||||||
'select': this.selectHandler.bind(this),
|
'select': this.selectHandler.bind(this),
|
||||||
@ -74,6 +74,7 @@ export class WebideComponent implements OnInit {
|
|||||||
|
|
||||||
readHandler(data: SourceCode) {
|
readHandler(data: SourceCode) {
|
||||||
this.updateFileData(data);
|
this.updateFileData(data);
|
||||||
|
this.saveButtonState = 'SAVED';
|
||||||
}
|
}
|
||||||
|
|
||||||
tabSwitchButtonHandler(file) {
|
tabSwitchButtonHandler(file) {
|
||||||
|
Loading…
Reference in New Issue
Block a user