javascript - Uncaught exception not enough arguments nsresult error after using twitter widget in Lotus Notes XPage -


i using twitter widget twitter in xpage in lotus notes, inserted script source of xpage, widget works, not, gives me error

widget script:

<a class="twitter-timeline" href="https://twitter.com/dr_hosea" width="250" data-widget-id="332843009685209088">tweets @dr_hosea</a> <script> ! function (d, s, id) {     try {         var js, fjs = d.getelementsbytagname(s)[0],             p = /^http:/.test(d.location) ? 'http' : 'https';         if (!d.getelementbyid(id)) {             js = d.createelement(s);             js.id = id;             js.src = p + "://platform.twitter.com/widgets.js";             fjs.parentnode.insertbefore(js, fjs);         }     } catch (err) {} }(document, "script", "twitter-wjs"); </script> 

i following error:

uncaught exception: [exception... "not enough arguments" nsresult: ... 


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -