ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Simple solution. Download JS's by 'wget' command and change the pass in the code.
CDN server is stopping now for some reason. The solution is to change "cdn" to "static".
Download example(download to the same directory as HTML file)
$ wget -p /home/common/htmls "http://cdn.robotwebtools.org/EaselJS/current/easeljs.min.js"
and change the line from
<script type="text/javascript" src="http://cdn.robotwebtools.org/EaselJS/current/easeljs.min.js"></script>
to
<script src="easeljs.min.js"></script>
worked.
Reference. How to download in Ubuntu terminal: "How to download a file from a website via terminal?"
2 | No.2 Revision |
Simple solution. Download JS's by 'wget' command and change the pass in the code.
CDN server is stopping now for some reason. The solution is to change "cdn" to "static".
Download example(download to the same directory as HTML file)
$ wget -p /home/common/htmls "http://cdn.robotwebtools.org/EaselJS/current/easeljs.min.js"
"http://static.robotwebtools.org/EaselJS/current/easeljs.min.js"
and change the line from
<script type="text/javascript" src="http://cdn.robotwebtools.org/EaselJS/current/easeljs.min.js"></script>
to
<script src="easeljs.min.js"></script>
worked.
Reference. How to download in Ubuntu terminal: "How to download a file from a website via terminal?"