initial checkin from subversion
This commit is contained in:
14
www/templates/picture.html
Normal file
14
www/templates/picture.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<img id="{{id}}__image" src="" width="150" />
|
||||
<button id="{{id}}"
|
||||
|
||||
{{#if btnStyle}}
|
||||
style="{{btnStyle}}"
|
||||
{{/if}}
|
||||
|
||||
name="{{id}}" value="{{value}}" onclick="this.picFun.takePic(this);" class="topcoat-button--large myPicBut">{{label}}</button>
|
||||
|
||||
<script>
|
||||
// "Activate" the Handler...
|
||||
// adding a funciton to a HTML element doesn't seem to be possible with jQuery?!
|
||||
document.getElementById("{{id}}").picFun= new app.myCamHandler();
|
||||
</script>
|
||||
7
www/templates/textInput.html
Normal file
7
www/templates/textInput.html
Normal file
@@ -0,0 +1,7 @@
|
||||
<input name="{{id}}"
|
||||
|
||||
{{#if style}}
|
||||
style="{{style}}"
|
||||
{{/if}}
|
||||
|
||||
class="topcoat-text-input" value="{{value}}" placeholder="{{label}}"/>
|
||||
Reference in New Issue
Block a user