QuickStart with J3.x downloaded from our site works fine. Yellow arrows work as a slide changer and they doesn't scroll back to top, so it might be standalone template issue or something wrong with user installation itself.
@mediaventa - please post a copy of your site with not working template and I'll try to verify what's the problem.
@Banana7777, there is no much difference between:
- Code: Select all
var a = 'a';
var b = 'b';
if ( a != b ) {}
and
- Code: Select all
var a = 'a';
var b = 'b';
if ( a !== b ) {}
and in most cases they give exact same result. The second one is more accurate.
You can fond out more about comparison operators here:
http://stackoverflow.com/questions/3594 ... omparisonsIf a developer is using jsHint or jsLint - its one of the basic suggestion to use more accurate operators.