You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,18 @@ Regarding code style like indentation and whitespace, **follow the conventions y
10
10
11
11
Please follow jQuery Foundation [JavaScript Style Guide](http://contribute.jquery.org/style-guide/js/) and/or [idomatic.js](https://github.com/rwldrn/idiomatic.js/).
12
12
13
+
## Working with the source code
14
+
15
+
The source code is in the `js` subdirectory. There is an empty HTML page in the test subdirectory which is pulling in the individual files from the `js` subdirectory in the correct order.
16
+
17
+
To quickly get up an running and view the test page in a web browser, you can use the [local-web-server](https://www.npmjs.com/package/local-web-server) package.
18
+
19
+
```
20
+
npm install -g local-web-server
21
+
```
22
+
23
+
Then change to the geo directory and run `ws`. You should now be able to view the test page by going to: http://localhost:8000/test/test.html
24
+
13
25
## Submitting pull requests
14
26
15
27
1. Create a new branch, please do not work in your `master` branch directly.
0 commit comments