| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library router_options; | 5 library router_options; |
| 6 | 6 |
| 7 import 'dart:html'; | 7 import 'dart:html'; |
| 8 import 'package:polymer/polymer.dart'; | 8 import 'package:polymer/polymer.dart'; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 _updateHash(null); | 40 _updateHash(null); |
| 41 _sub = windowLocation.changes.listen(_updateHash); | 41 _sub = windowLocation.changes.listen(_updateHash); |
| 42 } | 42 } |
| 43 | 43 |
| 44 void removed() { | 44 void removed() { |
| 45 _sub.cancel(); | 45 _sub.cancel(); |
| 46 super.removed(); | 46 super.removed(); |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 |
| 50 _init() { |
| 51 registerPolymerElement('router-options', () => new RouterOptions()); |
| 52 } |
| OLD | NEW |