Skip to content

Commit

Permalink
Item1918: fixed dialog() init bug
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/TagsPlugin@5068 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
OliverKrueger authored and OliverKrueger committed Sep 21, 2009
1 parent d049c6d commit a584383
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pub/System/TagsPlugin/tagsplugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
}
);

// Dialogbox Init
$("#tagsplugin_dialog_details").dialog( { autoOpen: false } );

tagsplugin_fe_redirect_details();

// Tags-Button
Expand Down Expand Up @@ -104,7 +107,6 @@
null,
function() {
$("#tagsplugin_dialog_details")
.dialog()
.dialog('option', 'modal', true)
.dialog('option', 'width', 460)
.dialog('option', 'title', 'Tag Details on '+tag)
Expand Down Expand Up @@ -234,7 +236,6 @@
function tagsplugin_alert(text) {
$("#tagsplugin_dialog_details")
.html(text)
.dialog()
.dialog('option', 'modal', true)
.dialog('option', 'width', 460)
.dialog('option', 'title', 'May I kindly ask for your attention?')
Expand Down

0 comments on commit a584383

Please sign in to comment.