aboutsummaryrefslogtreecommitdiff
path: root/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js')
-rw-r--r--js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js
index ddccc3d5..3066e0a8 100644
--- a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js
+++ b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js
@@ -210,25 +210,25 @@ var PickerNavigator = exports.PickerNavigator = Montage.create(Component, {
210 }, 210 },
211 211
212 willDraw: { 212 willDraw: {
213 enumerable: false, 213 enumerable: false,
214 value: function() { 214 value: function() {
215 215
216 } 216 }
217 }, 217 },
218 draw: { 218 draw: {
219 enumerable: false, 219 enumerable: false,
220 value: function() { 220 value: function() {
221 this.filterVal.innerHTML = this.pickerModel.currentFilter; 221 this.filterVal.innerHTML = this.pickerModel.currentFilter;
222 222
223 if(this.pickerModel.fatalError !== null){ 223 if(this.pickerModel.fatalError !== null){
224 this.error.innerHTML = this.pickerModel.fatalError; 224 this.error.innerHTML = this.pickerModel.fatalError;
225 } 225 }
226 226
227 } 227 }
228 }, 228 },
229 didDraw: { 229 didDraw: {
230 enumerable: false, 230 enumerable: false,
231 value: function() { 231 value: function() {
232 232
233 var that = this; 233 var that = this;
234 this.iconList = null; 234 this.iconList = null;
@@ -376,7 +376,7 @@ var PickerNavigator = exports.PickerNavigator = Montage.create(Component, {
376 //ready to show picker now 376 //ready to show picker now
377 this.element.style.visibility = "visible"; 377 this.element.style.visibility = "visible";
378 this.element.focus(); 378 this.element.focus();
379 } 379 }
380 }, 380 },
381 381
382 updateAddressBar:{ 382 updateAddressBar:{