keep things event-driven

This commit is contained in:
Eston Bond
2010-11-01 18:52:28 -07:00
parent ca92b0a8c6
commit 6c76ba20a2
2 changed files with 35 additions and 9 deletions
+11 -8
View File
@@ -58,7 +58,7 @@ var MarkDown = {
'function-link' : {
exec: function( txt, selText, $field ) {
var results = null;
res = $.GollumEditor.Dialog({
$.GollumEditor.Dialog({
title: '',
fields: [
{
@@ -73,15 +73,18 @@ var MarkDown = {
type: 'text',
help: 'The URL to link to.'
}
]
],
OK: function( res ) {
if ( res['text'] && res['href'] ) {
return '[' + res['text'] + ']('
+ res['href'] + ')';
}
else
return '';
}
});
if ( res['text'] && res['href'] ) {
return '[' + res['text'] + ']('
+ res['href'] + ')';
}
else
return '';
}
},