This topic contains 1 reply, has 0 voices, and was last updated by erictgrubaugh 6 years, 11 months ago.

  • Author
    Posts
  • #18097

    erictgrubaugh

    I’ve tried attaching a 2.0 Client Script module via the Custom Code tab, which does not work.

    I have also tried deploying a User Event on Leads/Prospects/Customers to attach the Client Script via `form.clientScriptModulePath`, which also does not work.
    This is a cached copy. Click here to see the original post.

  • #18098

    erictgrubaugh

    For now, I’ve settled for rewriting my 2.0 module as a 1.0 “module”:

    Code:
    var sponsor = sponsor || {};
    sponsor.events = (function () {

    var exports = {};

    function pageInit(context) {
    // I promise there is super awesome code here!
    }

    exports.pageInit = pageInit;
    return exports;
    })();

You must be logged in to reply to this topic.