Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : [1.1.1] Resetting a form changes input values to "__!!__"

$
0
0
I don't think that is the same issue. This looks more as if you are live binding to an image src. We don't have a fix for that yet. The workaround at the moment is this for EJS:
  1. <img <%= this.attr('image') ? "src='" + this.image + "'" : "" %> alt="An image" />
And this for Mustache:
  1. <img {{#image}}src="{{.}}"{{/image}} alt="An image" />

Viewing all articles
Browse latest Browse all 3491

Trending Articles