OLD | NEW |
| 1 <!-- |
| 2 @license |
| 3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --> |
1 <link rel='import' href='../app-route.html'> | 10 <link rel='import' href='../app-route.html'> |
2 <link rel='import' href='../app-location.html'> | 11 <link rel='import' href='../app-location.html'> |
3 | 12 |
4 | 13 |
5 | 14 |
6 <dom-module id="observer-tester"> | 15 <dom-module id="observer-tester"> |
7 <template> | 16 <template> |
8 <app-location route="{{route}}"></app-location> | 17 <app-location route="{{route}}"></app-location> |
9 <app-route | 18 <app-route |
10 route="{{route}}" | 19 route="{{route}}" |
(...skipping 18 matching lines...) Expand all Loading... |
29 value: false, | 38 value: false, |
30 observer: 'checkActive' | 39 observer: 'checkActive' |
31 } | 40 } |
32 }, | 41 }, |
33 checkActive: function(active) { | 42 checkActive: function(active) { |
34 var x = 1; | 43 var x = 1; |
35 } | 44 } |
36 }); | 45 }); |
37 </script> | 46 </script> |
38 </dom-module> | 47 </dom-module> |
OLD | NEW |