The meta tag property selector used in gigya_sharebar.js is invalid in jQuery versions 1.5 and above.

$('meta[property=og:image]')
...should become...
$('meta[property="og:image"]')
(double-quotes around og:image)

Steps to Reproduce

  1. Download https://drupal.org/project/jquery_update and install, configure to use newer version of jQuery
  2. Look in console for error on any page gigya_sharebar.js is loaded

See http://stackoverflow.com/a/6749201/1229018 and http://api.jquery.com/category/selectors/attribute-selectors/

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

prophet108’s picture

Thank you!

eyeless’s picture

Status: Active » Needs review
eyeless’s picture

Here is a patch for all the js files where error appears.
Also, corrects the 'description' typo, where 'ua' is missing.

gambaweb’s picture

Status: Needs review » Closed (fixed)

thanks for that , added patches

  • Commit e5084b9 on 7.x-4.x by gambaweb:
    Issue #2137473 by covenantd,eyeless : fixing og:image tag and fixing...