-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Works now for the main screens and also the Automate Setup. Created the simple html placeholder for pretty much all the Setup screens. But still need to add js for the rest of the new Setup screens.
- Loading branch information
1 parent
a953659
commit bbae9c2
Showing
7 changed files
with
216 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* For the Automate screen */ | ||
function displayAutomateScreen(pattern) { | ||
makeScreenVisible(automateObject); | ||
} | ||
|
||
let automateObject = { | ||
elementId: 'automateScreen', | ||
|
||
/* Displays the context menu for the Pattern Screen */ | ||
displayContextMenu: function() { | ||
makeScreenVisible("automateScreenContextMenu"); | ||
}, | ||
|
||
leftArrowClicked: function(shift) { | ||
alert('automateScreen left arrow clicked shift=' + shift); | ||
}, | ||
|
||
rightArrowClicked: function(shift) { | ||
alert('automateScreen right arrow clicked shift=' + shift); | ||
}, | ||
|
||
upArrowClicked: function(shift) { | ||
alert('automateScreen up arrow clicked shift=' + shift); | ||
}, | ||
|
||
downArrowClicked: function(shift) { | ||
alert('automateScreen down arrow clicked shift=' + shift); | ||
}, | ||
|
||
upClicked: function(shift) { | ||
alert('automateScreen up clicked shift=' + shift); | ||
}, | ||
|
||
downClicked: function(shift) { | ||
alert('automateScreen down clicked shift=' + shift); | ||
}, | ||
|
||
okClicked: function(shift) { | ||
alert('automateScreen ok clicked shift=' + shift); | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters