Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: GMOD/GBrowse
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: kevinschaper/GBrowse
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 22, 2013

  1. Removed 'helpful' replacement that disallowed relative urls, changed …

    …inline javascript tag to wait for page load
    Kevin Schaper committed Oct 22, 2013
    Copy the full SHA
    70a033c View commit details
Showing with 1 addition and 5 deletions.
  1. +1 −5 conf/plugins/Submitter.pm
6 changes: 1 addition & 5 deletions conf/plugins/Submitter.pm
Original file line number Diff line number Diff line change
@@ -115,10 +115,6 @@ sub dump {
$fasta =~ s/(\S{60})/$1\n/g;
$fasta = ">$name\n$fasta\n";

unless ($url =~ /^http/i) {
$url = "http://$url";
}

# pass-thru arguments -- to be sent to the extertnal web-site
my %args;
for my $arg (keys %$config) {
@@ -161,7 +157,7 @@ sub dump {
print end_form;

unless ($confirm || $extra_html) {
print qq(<script type="text/javascript">document.f1.submit();</script>);
print qq(<script type="text/javascript">window.onload = function() {document.f1.submit();};</script>);
}
}