OLD | NEW |
1 // Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 1 // Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
2 // This code may only be used under the BSD style license found at http://polyme
r.github.io/LICENSE.txt | 2 // This code may only be used under the BSD style license found at http://polyme
r.github.io/LICENSE.txt |
3 // The complete set of authors may be found at http://polymer.github.io/AUTHORS.
txt | 3 // The complete set of authors may be found at http://polymer.github.io/AUTHORS.
txt |
4 // The complete set of contributors may be found at http://polymer.github.io/CON
TRIBUTORS.txt | 4 // The complete set of contributors may be found at http://polymer.github.io/CON
TRIBUTORS.txt |
5 // Code distributed by Google as part of the polymer project is also | 5 // Code distributed by Google as part of the polymer project is also |
6 // subject to an additional IP rights grant found at http://polymer.github.io/PA
TENTS.txt | 6 // subject to an additional IP rights grant found at http://polymer.github.io/PA
TENTS.txt |
7 | 7 |
8 (function(global) { | 8 (function(global) { |
9 'use strict'; | 9 'use strict'; |
10 | 10 |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 | 334 |
335 var observable = value; | 335 var observable = value; |
336 var binding = bindInputEvent(this, name, observable); | 336 var binding = bindInputEvent(this, name, observable); |
337 updateInput(this, name, | 337 updateInput(this, name, |
338 observable.open(inputBinding(this, name))); | 338 observable.open(inputBinding(this, name))); |
339 | 339 |
340 // Option update events may need to access select bindings. | 340 // Option update events may need to access select bindings. |
341 return updateBindings(this, name, binding); | 341 return updateBindings(this, name, binding); |
342 } | 342 } |
343 })(this); | 343 })(this); |
OLD | NEW |