question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Chrome 43, 1.3.0: Uncaught TypeError: a.loadFull is not a function

See original GitHub issue

Not sure why/how this is happening, but “loadFull” isn’t defined anywhere else in my codebase and the stack trace refers to line 14 of an anonymous JS block, which is where my Rollbar code lies. It seems to so far have occurred only when someone is actually signed in, am I doing something wrong? 😃

It only started once I updated to 1.3.0 this weekend. 1.2.3 worked for me previously, so maybe I’ll rollback to that.

<script>
    var _rollbarConfig = {
        accessToken: "<%= ENV['ROLLBAR_CLIENT_ACCESS_TOKEN'] || '' %>",
        captureUncaught: true,
        payload: {
            environment: "<%== j Rails.env %>"<% if current_refinery_user.present? %>,
            person: {
                id: "<%== j current_refinery_user.id.to_s %>",
                username: "<%== j current_refinery_user.username %>",
                email: "<%== j current_refinery_user.email %>",
            }<% end %>
        }
    };
    !function(r){function o(e){if(t[e])return t[e].exports;var n=t[e]={exports:{},id:e,loaded:!1};return r[e].call(n.exports,n,n.exports,o),n.loaded=!0,n.exports}var t={};return o.m=r,o.c=t,o.p="",o(0)}([function(r,o,t){"use strict";var e=t(1).Rollbar,n=t(2),i="https://d37gvrvc0wt4s1.cloudfront.net/js/v1.3/rollbar.umd.min.js";_rollbarConfig.rollbarJsUrl=_rollbarConfig.rollbarJsUrl||i;var a=e.init(window,_rollbarConfig),l=n(a,_rollbarConfig);a.loadFull(window,document,!1,_rollbarConfig,l)},function(r,o,t){"use strict";function e(r){this.shimId=++s,this.notifier=null,this.parentShim=r,this.logger=function(){},window.console&&void 0===window.console.shimId&&(this.logger=window.console.log)}function n(r,o,t){window._rollbarWrappedError&&(t[4]||(t[4]=window._rollbarWrappedError),t[5]||(t[5]=window._rollbarWrappedError._rollbarContext),window._rollbarWrappedError=null),r.uncaughtError.apply(r,t),o&&o.apply(window,t)}function i(r){var o=e;return l(function(){if(this.notifier)return this.notifier[r].apply(this.notifier,arguments);var t=this,e="scope"===r;e&&(t=new o(this));var n=Array.prototype.slice.call(arguments,0),i={shim:t,method:r,args:n,ts:new Date};return window._rollbarShimQueue.push(i),e?t:void 0})}function a(r,o){if(o.hasOwnProperty&&o.hasOwnProperty("addEventListener")){var t=o.addEventListener;o.addEventListener=function(o,e,n){t.call(this,o,r.wrap(e),n)};var e=o.removeEventListener;o.removeEventListener=function(r,o,t){e.call(this,r,o&&o._wrapped?o._wrapped:o,t)}}}function l(r,o){return o=o||window.console.log||function(){},function(){try{return r.apply(this,arguments)}catch(t){o("Rollbar internal error:",t)}}}var s=0;e.init=function(r,o){var t=o.globalAlias||"Rollbar";if("object"==typeof r[t])return r[t];r._rollbarShimQueue=[],r._rollbarWrappedError=null,o=o||{};var i=new e;return l(function(){if(i.configure(o),o.captureUncaught){var e=r.onerror;r.onerror=function(){var r=Array.prototype.slice.call(arguments,0);n(i,e,r)};var l,s,u="EventTarget,Window,Node,ApplicationCache,AudioTrackList,ChannelMergerNode,CryptoOperation,EventSource,FileReader,HTMLUnknownElement,IDBDatabase,IDBRequest,IDBTransaction,KeyOperation,MediaController,MessagePort,ModalWindow,Notification,SVGElementInstance,Screen,TextTrack,TextTrackCue,TextTrackList,WebSocket,WebSocketWorker,Worker,XMLHttpRequest,XMLHttpRequestEventTarget,XMLHttpRequestUpload".split(",");for(l=0;l<u.length;++l)s=u[l],r[s]&&r[s].prototype&&a(i,r[s].prototype)}return r[t]=i,i},i.logger)()},e.prototype.loadFull=function(r,o,t,e,n){var i=l(function(){var r=o.createElement("script"),n=o.getElementsByTagName("script")[0];r.src=e.rollbarJsUrl,r.async=!t,r.onload=a,n.parentNode.insertBefore(r,n)},this.logger),a=l(function(){var o;if(void 0===r._rollbarPayloadQueue){var t,e,i,a;for(o=new Error("rollbar.js did not load");t=r._rollbarShimQueue.shift();)for(i=t.args,a=0;a<i.length;++a)if(e=i[a],"function"==typeof e){e(o);break}}"function"==typeof n&&n(o)},this.logger);l(function(){t?i():r.addEventListener?r.addEventListener("load",i,!1):r.attachEvent("onload",i)},this.logger)()},e.prototype.wrap=function(r,o){try{var t;if(t="function"==typeof o?o:function(){return o||{}},"function"!=typeof r)return r;if(r._isWrap)return r;if(!r._wrapped){r._wrapped=function(){try{return r.apply(this,arguments)}catch(o){throw o._rollbarContext=t()||{},o._rollbarContext._wrappedSource=r.toString(),window._rollbarWrappedError=o,o}},r._wrapped._isWrap=!0;for(var e in r)r.hasOwnProperty(e)&&(r._wrapped[e]=r[e])}return r._wrapped}catch(n){return r}};for(var u="log,debug,info,warn,warning,error,critical,global,configure,scope,uncaughtError".split(","),p=0;p<u.length;++p)e.prototype[u[p]]=i(u[p]);r.exports={Rollbar:e,_rollbarWindowOnError:n}},function(r,o,t){"use strict";r.exports=function(r,o){return function(t){if(!t&&!window._rollbarInitialized){var e=window.RollbarNotifier,n=o||{},i=n.globalAlias||"Rollbar",a=window.Rollbar.init(n,r);a._processShimQueue(window._rollbarShimQueue||[]),window[i]=a,window._rollbarInitialized=!0,e.processPayloads()}}}}]);
</script>
TypeError: a.loadFull is not a function
1. File my-code.js line 2 col 28781 in null.<anonymous>
2. File my-code.js line 2 col 27248 in st.fn.extend.append
3. File my-code.js line 2 col 29797 in st.fn.extend.domManip
4. File my-code.js line 1 col 13834 in Function.st.extend.globalEval
5. File my-code.js line 1 col 13823 in [anonymous]
6. File "(native)" line (unknown) in eval
7. File "<anonymous>" line 14 col 203 in eval
8. File "<anonymous>" line 14 col 198 in eval
9. File "<anonymous>" line 14 col 111 in o
10. File "<anonymous>" line 14 col 448 in Object.eval

Issue Analytics

  • State:closed
  • Created 8 years ago
  • Comments:15 (5 by maintainers)

github_iconTop GitHub Comments

2reactions
efreedcommented, Dec 22, 2015

This came up for me today. It was because the rollbar snippet was included twice in the page, removing one of them fixed it.

0reactions
christophmegustacommented, Nov 13, 2017

we are getting

application start failed in state init: Error: [$injector:modulerr] Failed to instantiate module the.app due to:
TypeError: Cannot read property 'loadFull' of undefined
    at Object.<anonymous> (http://localhost:31234/lib/ng-rollbar/ng-rollbar.min.js:6:1548)
    at b (http://localhost:31234/lib/ng-rollbar/ng-rollbar.min.js:6:1199)
    at http://localhost:31234/lib/ng-rollbar/ng-rollbar.min.js:6:1286
    at Object.init (http://localhost:31234/lib/ng-rollbar/ng-rollbar.min.js:6:1291)
Read more comments on GitHub >

github_iconTop Results From Across the Web

Uncaught TypeError in Chrome and Not a Function in FireFox
First question What error did I make in my codes? default.js window.gmap = { zoom_Changed: function() { zoom = gmap ...
Read more >
Fix Chrome update problems & failed updates - Google Support
If you're having problems updating Chrome on your computer, you might see: Update failed: Updates are disabled by administrator Update failed (Error: 3...
Read more >
circleci/browser-tools@1.4.0
Install a variety of browsers and tools for browser testing. Includes Chrome, FireFox, ChromeDriver and GeckoDriver.
Read more >
Speech Recognition Anywhere
Use Voice Recognition to fill out forms and dictate email with speech to text. Control the Internet with custom voice commands!
Read more >
chrome.runtime - Chrome Developers
Use the chrome.runtime API to retrieve the background page, return details about the ... Most methods on the Runtime API do not require...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found