Chromium Code Reviews| Index: chrome/browser/resources/md_history/list_container.js |
| diff --git a/chrome/browser/resources/md_history/list_container.js b/chrome/browser/resources/md_history/list_container.js |
| index 0c79ae11e590ad084ac77391bf1278a88820d4a7..0fa961197c3232303ed362a9e010939742dc738d 100644 |
| --- a/chrome/browser/resources/md_history/list_container.js |
| +++ b/chrome/browser/resources/md_history/list_container.js |
| @@ -93,7 +93,8 @@ Polymer({ |
| }, |
| unselectAllItems: function(count) { |
| - this.getSelectedList_().unselectAllItems(count); |
| + if (this.getSelectedList_()) |
|
tsergeant
2016/08/19 00:21:38
you'll need to do a good old-fashioned rebase for
calamity
2016/08/19 03:50:57
Done.
|
| + this.getSelectedList_().unselectAllItems(count); |
| }, |
| /** |