Author Topic: Correction request on tutorial DSE  (Read 2652 times)

Offline cionki

  • Newcomer
  • Posts: 12
    • EITSA. A little but active group of amateur astronomers.
Correction request on tutorial DSE
« on: 2013 June 06 00:53:39 »
Hi all
I don't know if it's the right place for this post...
I was reading the interesting tutorial about "The DarkStructureEnhance (DSE) Algorithm in PixInsight " on this page http://pixinsight.com/tutorials/DSE/en.html
When reading it I tried to see the differences of the processed images before&after as suggested with mouseover action ... my surprise is that nothing changes the image remain always the same...
So i checked the source code of the page and i spotted out a error in the javascript code...
The error is very simple and repeated in all the page... every call to the function setImgSrc( ); is lacking of the final parenthesis for example this is the first occurrence of the error
Code: [Select]
<a href="javascript:void( 0 );" onmouseover="setImgSrc( 'MO01', 'RGB.jpg';">Original RGB mage</a>it should be
Code: [Select]
<a href="javascript:void( 0 );" onmouseover="setImgSrc( 'MO01', 'RGB.jpg' );">Original RGB mage</a>
It's possible to correct the error?

Thank you
cionki
« Last Edit: 2013 June 06 06:03:14 by cionki »

Offline Juan Conejero

  • PTeam Member
  • PixInsight Jedi Grand Master
  • ********
  • Posts: 7111
    • http://pixinsight.com/
Re: Correction request on tutorial DSE
« Reply #1 on: 2013 June 10 09:19:40 »
Hi cionki,

This is now fixed. You may need to refresh your browser to see the changes.

Thank you for detecting and solving this issue.
Juan Conejero
PixInsight Development Team
http://pixinsight.com/

Offline cionki

  • Newcomer
  • Posts: 12
    • EITSA. A little but active group of amateur astronomers.
Re: Correction request on tutorial DSE
« Reply #2 on: 2013 June 11 00:29:26 »
Thank you!!! now it's working properly  :D