Magento 1.9.2.4 Intenso Ultimo

ventyl

New member
I've installed Magento plugin and its works, but in web console i have :

Uncaught Error: Syntax error, unrecognized expression: Xj/4NHvML4pcsq3MvkaM3AhqEAHI30bVi+sjPrV7rQ==
b.error @ jquery.js:24
b.tokenize @ jquery.js:24
b.select @ jquery.js:24
b @ jquery.js:24
find @ jquery.js:24
_.fn.init @ jquery.js:24
_ @ jquery.js:14
WR360.ImageRotator.pS @ VM18370:1
(anonymous function) @ VM18370:1
each @ jquery.js:14
(anonymous function) @ VM18370:1
dispatch @ jquery.js:25
q.handle @ jquery.js:24
trigger @ jquery.js:25
(anonymous function) @ jquery.js:25
each @ jquery.js:14each @ jquery.js:14
trigger @ jquery.js:25events @ foundation.min.js:9
(anonymous function) @ foundation.min.js:8
each @ jquery.js:14
each @ jquery.js:14
a @ foundation.min.js:8
init @ foundation.min.js:9
init_lib @ foundation.min.js:8
init @ foundation.min.js:8
(anonymous function) @ foundation.min.js:8
each @ jquery.js:14
each @ jquery.js:14
e.fn.foundation @ foundation.min.js:8
(anonymous function) @ fondmetal-tpg1-czarny-polerowany.html:8833

VM18370:1 13:20:36.017 INFO Powered by WebRotate 360 © ~ v3.6 (build 3.6.0.66)

Magento 1.9.2.4
Intenso Ultimo provides jQuery v2.1.4 http://www.getintenso.com/demo/electronics_en
Original imagerotator.js was updated from 3.5 beta
Magento WebRotate360 module version: 3.5.10

Please, help me :)
 

WebSupport

Active member
Hi!

Did you turn off our jQuery include in the module settings in Admin by any chance? That would be the first guess. Otherwise we would need to be able to reproduce the issue on some test page is possible.
 

ventyl

New member
Yes, jQuery include is turned off, there was conflicts.
Intenso jQuery includes sizzle.js and some more libs, (eg. chosen).

I've sent You access to development environment (Contact a Board Administrator)
 

WebSupport

Active member
Thanks for the server details! We will be looking into it today-tomorrow and will let you know how it goes asap ;)
 

WebSupport

Active member
Hi,

Looks like you manually added the webrotate initialization script (i.e bypassing our Magento plugin) under this div:

Code:
<div class="product-image-360">
  <div>
    <script language="javascript" type="text/javascript">
        ....
    </script>
  </div>
</div>

What happens most likely is that it's executed before page's DOM is loaded so it asserts. To fix, you can wrap it inside jQuery's ready like this:

Code:
<script language="javascript" type="text/javascript">
  jQuery(document).ready(function(){
    ....
  });
</script>

Just lets us know if this doesn't help!
 

ventyl

New member
Hmmm...
I'm looking at media.phtml delivered with your module, and there is no jQuery(document).ready(function(){ });
Nevertheless, adding this part to script section solving the problem.

Great, thank You.
 
Top