aboutsummaryrefslogtreecommitdiff
path: root/js/io/ui/file-picker
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:52:06 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit648ee61ae84216d0236e0dbc211addc13b2cfa3a (patch)
tree8f0f55557bd0c47a84e49c1977c950645d284607 /js/io/ui/file-picker
parentaedd14b18695d031f695d27dfbd94df5614495bb (diff)
downloadninja-648ee61ae84216d0236e0dbc211addc13b2cfa3a.tar.gz
Expand tabs
Diffstat (limited to 'js/io/ui/file-picker')
-rw-r--r--js/io/ui/file-picker/picker-navigator.reel/picker-navigator.css12
-rw-r--r--js/io/ui/file-picker/picker-navigator.reel/picker-navigator.js18
2 files changed, 15 insertions, 15 deletions
diff --git a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.css b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.css
index e4ecf167..17d9aec1 100644
--- a/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.css
+++ b/js/io/ui/file-picker/picker-navigator.reel/picker-navigator.css
@@ -39,8 +39,8 @@ POSSIBILITY OF SUCH DAMAGE.
39 background-color:#494949; 39 background-color:#494949;
40 font-family: 'Droid Sans', sans-serif; 40 font-family: 'Droid Sans', sans-serif;
41 border-radius: 8px; 41 border-radius: 8px;
42 box-shadow: 0px 0px 8px rgba(0, 0, 0, .8); 42 box-shadow: 0px 0px 8px rgba(0, 0, 0, .8);
43 text-shadow: 1px 1px 1px #000; 43 text-shadow: 1px 1px 1px #000;
44} 44}
45 45
46.picker .pickerHeader{ 46.picker .pickerHeader{
@@ -229,13 +229,13 @@ POSSIBILITY OF SUCH DAMAGE.
229} 229}
230 230
231.picker .buttons button { 231.picker .buttons button {
232 float: left; 232 float: left;
233 width: 100px; 233 width: 100px;
234 margin-top: 3px; 234 margin-top: 3px;
235} 235}
236 236
237.picker .okButton{ 237.picker .okButton{
238 margin: 0px 22px 0px 8px; 238 margin: 0px 22px 0px 8px;
239 /* 239 /*
240margin-right:25px; 240margin-right:25px;
241 -webkit-box-align: center; 241 -webkit-box-align: center;
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:{