fix accidental global

This commit is contained in:
Evan You 2013-08-13 21:48:06 -04:00
parent cc64365323
commit aff965f353
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function Seed (el, options) {
scope = this.scope = new ScopeConstructor(this, options)
// copy data
for (key in data) {
for (var key in data) {
scope[key] = data[key]
}