Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/browser/resources/file_manager/js/file_manager.js

Issue 10843026: Fixing tap handling in Fiole Manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 * FileManager constructor. 6 * FileManager constructor.
7 * 7 *
8 * FileManager objects encapsulate the functionality of the file selector 8 * FileManager objects encapsulate the functionality of the file selector
9 * dialogs, as well as the full screen file manager application (though the 9 * dialogs, as well as the full screen file manager application (though the
10 * latter is not yet implemented). 10 * latter is not yet implemented).
(...skipping 3134 matching lines...) Expand 10 before | Expand all | Expand 10 after
3145 this.closeOnUnmount_ = false; 3145 this.closeOnUnmount_ = false;
3146 } 3146 }
3147 3147
3148 this.updateTitle_(); 3148 this.updateTitle_();
3149 this.updateGDataUnmountedPanel_(); 3149 this.updateGDataUnmountedPanel_();
3150 if (this.isOnGData()) 3150 if (this.isOnGData())
3151 this.unmountedPanel_.classList.remove('retry-enabled'); 3151 this.unmountedPanel_.classList.remove('retry-enabled');
3152 }; 3152 };
3153 3153
3154 FileManager.prototype.findListItemForEvent_ = function(event) { 3154 FileManager.prototype.findListItemForEvent_ = function(event) {
3155 return this.findListItemForNode_(event.srcElement); 3155 return this.findListItemForNode_(event.touchedElement || event.srcElement);
3156 }; 3156 };
3157 3157
3158 FileManager.prototype.findListItemForNode_ = function(node) { 3158 FileManager.prototype.findListItemForNode_ = function(node) {
3159 var item = this.currentList_.getListItemAncestor(node); 3159 var item = this.currentList_.getListItemAncestor(node);
3160 // TODO(serya): list should check that. 3160 // TODO(serya): list should check that.
3161 return item && this.currentList_.isItem(item) ? item : null; 3161 return item && this.currentList_.isItem(item) ? item : null;
3162 }; 3162 };
3163 3163
3164 /** 3164 /**
3165 * Unload handler for the page. May be called manually for the file picker 3165 * Unload handler for the page. May be called manually for the file picker
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
4224 } 4224 }
4225 4225
4226 var defaultActionSeparator = 4226 var defaultActionSeparator =
4227 this.dialogDom_.querySelector('#default-action-separator'); 4227 this.dialogDom_.querySelector('#default-action-separator');
4228 4228
4229 this.defaultActionMenuItem_.hidden = !taskItem; 4229 this.defaultActionMenuItem_.hidden = !taskItem;
4230 defaultActionSeparator.hidden = !taskItem; 4230 defaultActionSeparator.hidden = !taskItem;
4231 } 4231 }
4232 })(); 4232 })();
4233 4233
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698