meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:user_guide_website [2021/09/14 01:03]
JSCAD Editor [Sharing Designs]
en:user_guide_website [2021/09/14 01:22] (current)
JSCAD Editor [Trouble Shooting Designs]
Line 69: Line 69:
  
 Try it out! Try it out!
 +
 +==== Trouble Shooting Designs ====
 +
 +Hopefully creating designs will be easy. The best approach is making small incremental changes and testing the results. Small parts can be created and tested separately, and brought together into the large design later.
 +
 +However, there are times when all goes wrong, and some trouble shooting is required. First, make sure the browser has the 'browser tools' or 'developer tools' enabled, as the tools are turned off sometimes. Second, open the 'tools' which is just a menu selection.
 +
 +The browser window will now have two sections; the JSCAD design and the tools. The tool of interest is the 'console', which shows errors, warning, messages, etc. This console can be cleared anytime, and will clear if the JSCAD design is reloaded.
 +
 +What's so valuable about the console?
 +
 +This will show more information about the errors. There should be a 'stack trace' as to where the error occurred.
 +
 +Also, additional messages can be sent to the console, making trouble shooting easier. For example, the contents of a parameter can be sent to the console by:
 +
 +<code javascript>
 +console.log('parameter',parameter)
 +</code>
 +
 +Hopefully, these pointers will be enough to trouble shoot any issues. If not then please contact User Group for some great help.
 ==== Install Locally ==== ==== Install Locally ====
  
Line 87: Line 107:
 And for those that want to make changes to the website, there is [[https://github.com/jscad/OpenJSCAD.org/blob/master/CONTRIBUTING.md|a guide on making changes]]. And for those that want to make changes to the website, there is [[https://github.com/jscad/OpenJSCAD.org/blob/master/CONTRIBUTING.md|a guide on making changes]].
  
-==== Integrate into a Website ==== 
  
-The website can be integrated into an existing website.