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: k4cg/nichtparasoup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a80a2d7f2bf0
Choose a base ref
...
head repository: k4cg/nichtparasoup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5ddf3eaa7c7c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 2, 2017

  1. fix: add threadUri at correct place

    Corby committed Nov 2, 2017
    Copy the full SHA
    937fc83 View commit details
  2. Copy the full SHA
    5ddf3ea View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 templates_raw/root/js/feel.js
4 changes: 2 additions & 2 deletions templates_raw/root/js/feel.js
Original file line number Diff line number Diff line change
@@ -182,14 +182,14 @@
srcSpan.className = 'src '+ crawler;

var srcA = srcSpan.appendChild(document.createElement('a'));
srcA.href = srcA.innerHTML = srcA.innerText = this.src;
srcA.href = srcA.innerHTML = srcA.innerText = threadUri != "None" ? threadUri : this.src;

if ( typeof onReady == "function" )
{
onReady(imageBox);
}
});
imageDoc.src = threadUri != "None" ? threadUri : uri;
imageDoc.src = uri;
};

np._pushImage = function (uri, crawler, threadUri)