event log: fix Show All links. #1023

This commit is contained in:
Hylke Bons 2012-10-20 15:21:55 +01:00
parent 74e2af60f7
commit b91477ef2e
2 changed files with 5 additions and 3 deletions

View file

@ -10,7 +10,7 @@
$('dl dd:nth-child(-n+10)').css('display', 'block');
$('.day-entry-content .event-entry:last-child').css('border', 'none');
$('a').click(function (event) {
$('a').not('.show').click(function (event) {
window.external.LinkClicked($(this).attr("href"));
event.preventDefault();
});

View file

@ -262,8 +262,10 @@ namespace SparkleShare {
PreventsApplicationTerminationWhenModal = false
};
if ((NSPanelButtonType) panel.RunModal ()== NSPanelButtonType.Ok) {
string target_file_path = Path.Combine (panel.DirectoryUrl.RelativePath, panel.NameFieldStringValue);
if ((NSPanelButtonType) panel.RunModal () == NSPanelButtonType.Ok) {
string target_file_path = Path.Combine (panel.DirectoryUrl.RelativePath,
panel.NameFieldStringValue);
Controller.SaveDialogCompleted (target_file_path);
} else {