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.htmlWhen 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
<a href="javascript:void( 0 );" onmouseover="setImgSrc( 'MO01', 'RGB.jpg';">Original RGB mage</a>
it should be
<a href="javascript:void( 0 );" onmouseover="setImgSrc( 'MO01', 'RGB.jpg' );">Original RGB mage</a>
It's possible to correct the error?
Thank you
cionki