-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a library to format the currency, because Ugh.
Add a multi-line ability to the text-widget
- Loading branch information
Michael Malone
committed
Dec 6, 2015
1 parent
e2222d9
commit 6c5b916
Showing
17 changed files
with
95 additions
and
19 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<template> | ||
<div class="form-group"> | ||
<label class="control-label">${label}</label> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus"> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="!multiline" /> | ||
<textarea value.bind="textValue" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="multiline"></textarea> | ||
</div> | ||
</template> |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<template> | ||
<div class="form-group"> | ||
<label class="control-label">${label}</label> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus"> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="!multiline" /> | ||
<textarea value.bind="textValue" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="multiline"></textarea> | ||
</div> | ||
</template> |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<template> | ||
<div class="form-group"> | ||
<label class="control-label">${label}</label> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus"> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="!multiline" /> | ||
<textarea value.bind="textValue" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="multiline"></textarea> | ||
</div> | ||
</template> |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<template> | ||
<div class="form-group"> | ||
<label class="control-label">${label}</label> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus"> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="!multiline" /> | ||
<textarea value.bind="textValue" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="multiline"></textarea> | ||
</div> | ||
</template> |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
<template> | ||
<div class="form-group"> | ||
<label class="control-label">${label}</label> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus"> | ||
<input value.bind="textValue" type="text" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="!multiline" /> | ||
<textarea value.bind="textValue" class="form-control" placeholder.bind="placeholder" click.delegate="selectAll()" focus.bind="grabFocus" if.bind="multiline"></textarea> | ||
</div> | ||
</template> |
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