File tree Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Expand file tree Collapse file tree 3 files changed +20
-11
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,12 @@ Build System Designer for iOS:
3434npx cordova build ios
3535```
3636
37+ Run System Designer for iOS:
38+
39+ ``` sh
40+ npx cordova run ios
41+ ```
42+
3743## Build for Android
3844
3945Add Android platform:
@@ -48,6 +54,20 @@ Build System Designer for Android:
4854npx cordova build android
4955```
5056
57+ ## Build for Browser
58+
59+ Add Browser platform:
60+
61+ ``` sh
62+ npx cordova platform add browser
63+ ```
64+
65+ Run System Designer for Browser:
66+
67+ ``` sh
68+ npx cordova run browser
69+ ```
70+
5171## License
5272
5373Copyright 2024 Erwan Carriou
Original file line number Diff line number Diff line change 1818 * limitations under the License.
1919 */
2020
21- document . addEventListener ( 'deviceready' , onDeviceReady , false ) ;
22- function onDeviceReady ( ) {
23- StatusBar . hide ( ) ;
24- }
25-
2621document . addEventListener ( 'menubutton' , onMenuButton , false ) ;
2722function onMenuButton ( ) {
2823 if ( document . location . href . indexOf ( '/app/' ) !== - 1 ) {
Original file line number Diff line number Diff line change 1818 * limitations under the License.
1919 */
2020
21- document . addEventListener ( 'deviceready' , onDeviceReady , false ) ;
22-
23- function onDeviceReady ( ) {
24- StatusBar . hide ( ) ;
25- }
26-
2721document . addEventListener ( 'menubutton' , onMenuButton , false ) ;
2822function onMenuButton ( ) {
2923 if ( document . location . href . indexOf ( '/app/' ) !== - 1 ) {
You can’t perform that action at this time.
0 commit comments