We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2ad5e commit 0f1e720Copy full SHA for 0f1e720
1 file changed
beta2/simple-explicit.html
@@ -28,7 +28,6 @@ <h3>Declarative</h3>
28
<span class="convertedFirstName"></span>
29
<span data-field="address.city"></span>
30
</p>
31
-
32
</form>
33
34
<script type="text/javascript">
@@ -64,7 +63,6 @@ <h3>Declarative</h3>
64
63
65
$("#myDeclarative").change(function(event) {
66
$.each( $(this).serializeArray(), function(index, object) {
67
- //person[object.name] = object.value;
68
set(person, object.name, object.value);
69
});
70
$(person).trigger("refresh");
@@ -76,7 +74,6 @@ <h3>Declarative</h3>
76
74
77
75
$("[data-field]").each(function() {
78
var field = $(this).data("field");
79
- //$(this).text(person[field]);
80
$(this).text(get(person, field));
81
82
$("input").each(function() {
0 commit comments