OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview PageListView implementation. | 6 * @fileoverview PageListView implementation. |
7 * PageListView manages page list, dot list, switcher buttons and handles apps | 7 * PageListView manages page list, dot list, switcher buttons and handles apps |
8 * pages callbacks from backend. | 8 * pages callbacks from backend. |
9 * | 9 * |
10 * Note that you need to have AppLauncherHandler in your WebUI to use this code. | 10 * Note that you need to have AppLauncherHandler in your WebUI to use this code. |
(...skipping 747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
758 if (page.navigationDot) | 758 if (page.navigationDot) |
759 page.navigationDot.remove(opt_animate); | 759 page.navigationDot.remove(opt_animate); |
760 this.cardSlider.removeCard(page); | 760 this.cardSlider.removeCard(page); |
761 }, | 761 }, |
762 }; | 762 }; |
763 | 763 |
764 return { | 764 return { |
765 PageListView: PageListView | 765 PageListView: PageListView |
766 }; | 766 }; |
767 }); | 767 }); |
OLD | NEW |