Skip to content

Commit

Permalink
Made the browser min-width slightly wider.
Browse files Browse the repository at this point in the history
  • Loading branch information
thezoggy committed Jan 18, 2011
1 parent fe9f3ed commit 285163f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/js/browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
fileBrowserDialog.dialog('option', 'dialogClass', 'browserDialog busy');
currentRequest = $.getJSON(endpoint, { path: path }, function(data){
fileBrowserDialog.empty();
$('<h1">').text(path).appendTo(fileBrowserDialog);
$('<h1>').text(path).appendTo(fileBrowserDialog);
list = $('<ul>').appendTo(fileBrowserDialog);
$.each(data, function(i, entry) {
link = $("<a href='javascript:void(0)' />").click(function(){ browse(entry.path, endpoint); }).text(entry.name);
Expand Down Expand Up @@ -49,7 +49,7 @@
dialogClass: 'browserDialog',
title: options.title,
position: ['center', 40],
minWidth: 400,
minWidth: 480,
minHeight: 320,
height: $(document).height()-80,
modal: true,
Expand Down

0 comments on commit 285163f

Please sign in to comment.