I get this error when I try to configure my block listed at admin/settings/ddblock. On that configure page, there is nothing under "Custom jQuery Cycle Plugin Settings", seems like it is an empty fieldset. I changed to a few different themes and saw the same problem.

Any ideas on what this could be? Thanks.

Comments

ppblaauw’s picture

[@value='top'] is used to set values in a field to top with javascript.

It's a javascript error. (did not see this error before)
Could be a browser issue.
Could you try another browser?

What browser are you using, which version and what Operating system

diodata’s picture

I am using Windows XP (SP3) with Firefox 3.6.3 (just updated in the past couple of days.) The configure edit page works fine in IE8 and Chrome 3. I'm just getting started with DDBlock so I'm not sure yet if the actual product (slideshow) has any similar problems. Thanks for your speedy reply.

ppblaauw’s picture

Thanks for the additional information.

The javascript to set field values is only used in the configuration page.
Will have a look further at FF 3.6.3 when I am back at the office tomorrow.

ppblaauw’s picture

Status: Active » Postponed (maintainer needs more info)

Could not reproduce the javascript error.

You could remove the @ from [@value='top'] in the js/ddblock.admin.js file. line 188-192

Replace

        $("#edit-pager-position option[@value='top']").show();
        $("#edit-pager-position option[@value='right']").hide();
        $("#edit-pager-position option[@value='bottom']").show();
        $("#edit-pager-position option[@value='left']").hide();
        $("#edit-pager-position option[@value='both']").hide();

with

        $("#edit-pager-position option[value='top']").show();
        $("#edit-pager-position option[value='right']").hide();
        $("#edit-pager-position option[value='bottom']").show();
        $("#edit-pager-position option[value='left']").hide();
        $("#edit-pager-position option[value='both']").hide();

Hope this helps you further, please let me know.

AndReA xD’s picture

heeeeeeeeeey! thnx! removing @ helped me =P
thnx a lot!