Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
genotoul-bioinfo
ng6
Commits
e8cdc79d
Commit
e8cdc79d
authored
Apr 27, 2010
by
Jerome Mariette
Browse files
fixe bug if no change url plugin
parent
020be3ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
ui/nG6/pi1/class.tx_nG6_pi1.php
View file @
e8cdc79d
...
...
@@ -509,12 +509,16 @@ class tx_nG6_pi1 extends tslib_pibase {
opacity: 0.5
}
});
$(".tx-nG6-pi1-imglink").click(function() {
jQuery.url.setUrl($(this).attr("href"));
$("#img_dialog").dialog("option", "title", "nG6 - '
.
$this
->
internal
[
'currentRow'
][
'name'
]
.
'");
$("#img_dialog").html(\'<img src="\'+jQuery.url.param("file")+\'"/>\').dialog("open");
return false;
});
$(".tx-nG6-pi1-imglink").click(function() {
jQuery.url.setUrl($(this).attr("href"));
$("#img_dialog").dialog("option", "title", "nG6 - '
.
$this
->
internal
[
'currentRow'
][
'name'
]
.
'");
if (jQuery.url.param("file")) {
$("#img_dialog").html(\'<img src="\'+jQuery.url.param("file")+\'"/>\').dialog("open");
} else {
$("#img_dialog").html(\'<img src="\'+$(this).attr("href")+\'"/>\').dialog("open");
}
return false;
});
});
</script> '
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment