Created
December 29, 2011 16:34
-
-
Save wemakeweb/1534867 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new Ressource({ | |
output : document.getElementById('to'), | |
item : { | |
name : { | |
type : 'text', | |
required : true, | |
style : { | |
width: '100px', | |
height: '100px' | |
} | |
}, | |
beschreibung : { | |
type : 'text_area', | |
}, | |
bild : { | |
type : 'checkbox' | |
} | |
}, | |
}).add([{ | |
name : 'sep', | |
beschreibung : 'cooler typ', | |
bild : 'gibts net' | |
}, | |
{ | |
name : 'sep1', | |
beschreibung : 'nö typ', | |
bild : 'gibts net' | |
}, | |
{ | |
name : 'sep2', | |
beschreibung : 'näöö33 typ', | |
bild : 'gibts net' | |
}]).render(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment