| CODENOTIFIER | HelpYou are not signed inSign in |
Project: eStudy
Revision: 835
Author: pcvolkmer
Date: 04 Sep 2008 10:09:30
Changes:Karten werden beim Teilnehmer wieder aktualisiert
Files:| ... | ...@@ -298,16 +298,17 @@ | |
| 298 | 298 | /* |
| 299 | 299 | Wenn Du weisst, was "object" in diesem Kontext sein soll, |
| 300 | 300 | darfst Du den Code wieder einbauen. :P |
| 301 | object.setValue( 'x', parseInt(obj.x) ); | |
| 302 | object.setValue( 'y', parseInt(obj.y) ); | |
| 303 | object.setValue( 'z', parseInt(obj.z) ); | |
| 304 | object.author = parseInt( obj.author ); | |
| 301 | */ | |
| 302 | this.setValue( 'x', parseInt(obj.x) ); | |
| 303 | this.setValue( 'y', parseInt(obj.y) ); | |
| 304 | this.setValue( 'z', parseInt(obj.z) ); | |
| 305 | this.author = parseInt( obj.author ); | |
| 305 | 306 | |
| 306 | object.cards.each( function( card, index ) { | |
| 307 | var json = obj.cards[index]; | |
| 308 | card.setText( unescape(json.text) ); | |
| 309 | card.refreshElement(); | |
| 310 | });*/ | |
| 307 | this.cards.each( function( card, index ) { | |
| 308 | var json = this.cards[index]; | |
| 309 | this.setText( unescape(json.text) ); | |
| 310 | this.refreshElement(); | |
| 311 | }); | |
| 311 | 312 | this.refreshElement(); |
| 312 | 313 | }, |
| 313 | 314 |