| OLD | NEW |
| 1 part of swarmlib; | |
| 2 | |
| 3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 4 // 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 |
| 5 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 6 | 4 |
| 7 /** A placeholder dialog that just passes the buck to Reader on feed | 5 /** A placeholder dialog that just passes the buck to Reader on feed |
| 8 configuration. */ | 6 configuration. */ |
| 9 class ConfigHintDialog extends DialogView { | 7 class ConfigHintDialog extends DialogView { |
| 10 CompositeView _parent; | 8 CompositeView _parent; |
| 11 Function _doneHandler; | 9 Function _doneHandler; |
| 12 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 26 <div> | 24 <div> |
| 27 Add or remove feeds in | 25 Add or remove feeds in |
| 28 <a href="https://www.google.com/reader" target="_blank"> | 26 <a href="https://www.google.com/reader" target="_blank"> |
| 29 Google Reader</a>'s "Subscriptions". | 27 Google Reader</a>'s "Subscriptions". |
| 30 Then come back here and click "Done" and we'll load your updated | 28 Then come back here and click "Done" and we'll load your updated |
| 31 list of subscriptions. | 29 list of subscriptions. |
| 32 </div> | 30 </div> |
| 33 '''); | 31 '''); |
| 34 } | 32 } |
| 35 } | 33 } |
| OLD | NEW |