killed some typos

This commit is contained in:
Kevin Jahns 2014-08-05 05:21:41 +02:00
parent 8972c46a69
commit 63e3319be2

View File

@ -5,11 +5,10 @@
First you have to include the following libraries in your widget file: First you have to include the following libraries in your widget file:
``` ```
<script src="http://open-app.googlecode.com/files/openapp.js"></script> <script src="http://open-app.googlecode.com/files/openapp.js"></script>
<script src="http://dbis.rwth-aachen.de/gadgets/lib/las/storage.js"></script>
<script src="http://dbis.rwth-aachen.de/gadgets/iwc/lib/iwc.js"></script> <script src="http://dbis.rwth-aachen.de/gadgets/iwc/lib/iwc.js"></script>
<script src="http://dbis.rwth-aachen.de/gadgets/lib/las/lasAjaxClient.js"></script>
<script src="http://dbis.rwth-aachen.de/~jahns/role-widgets/widgetbundles/libraries/DUIClient.js"></script> <script src="http://dbis.rwth-aachen.de/~jahns/role-widgets/widgetbundles/libraries/DUIClient.js"></script>
<script src="../dest/browser/Frameworks/JsonIwcYatta.js"></script> <script src="../dest/browser/Frameworks/JsonIwcYatta.js"></script>
<script src="./IwcJson.js"></script>
``` ```
*/ */
function init(){ function init(){
@ -82,7 +81,6 @@ function init(){
/** /**
The downside is that you are only allowed to overwrite existing properties. The downside is that you are only allowed to overwrite existing properties.
*/ */
yatta.value.newProperty = "Awesome" yatta.value.newProperty = "Awesome"
console.log(yatta.value.newProperty !== "Awesome") // true, yatta.value.newProperty is undefined. console.log(yatta.value.newProperty !== "Awesome") // true, yatta.value.newProperty is undefined.