Every line of 'chrome console angular scope' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
25 function ConsoleController(ngTableParams, dataService) { 26 var vm = this; 27 28 vm.tableParams = new ngTableParams({ // jshint ignore:line 29 count: -1, 30 sorting: { 31 id: 'asc' 32 } 33 }, { 34 total: 0, 35 counts: [], 36 getData: function($defer, params) { 37 dataService.devices.query(params.url(), function(data) { 38 params.total(data.length); 39 $defer.resolve(data); 40 }); 41 } 42 }); 43 }
55 function updateCodeSnippetConsole(consoleId, consoleOutput) { 56 var consoleElement = document.querySelector("#code-snippet-output-" + consoleId + " code"); 57 58 // Ensure the console exists 59 if(consoleElement != undefined) { 60 consoleElement.innerHTML = consoleElement.innerHTML 61 + decodeURIComponent(escape(window.atob(consoleOutput))) 62 + '<br />'; 63 } 64 }
234 function console(context) { 235 const { amplifyMeta } = context.exeInfo; 236 let pinpointApp = scanCategoryMetaForPinpoint(amplifyMeta[constants.CategoryName]); 237 if (!pinpointApp) { 238 pinpointApp = scanCategoryMetaForPinpoint(amplifyMeta[constants.AnalyticsCategoryName]); 239 } 240 if (pinpointApp) { 241 const { Id, Region } = pinpointApp; 242 const consoleUrl = `https://${Region}.console.aws.amazon.com/pinpoint/home/?region=${Region}#/apps/${Id}/settings`; 243 open(consoleUrl, { wait: false }); 244 } else { 245 context.print.error('Neither notifications nor analytics is enabled in the cloud.'); 246 } 247 }
152 function getFirebugConsole(wrappedContentWin, chromeWin) { 153 try { 154 return chromeWin.Firebug 155 && chromeWin.Firebug.getConsoleByGlobal 156 && chromeWin.Firebug.getConsoleByGlobal(wrappedContentWin) 157 || null; 158 } catch (e) { 159 dump('Greasemonkey: Failure Firebug console:\n' + uneval(e) + '\n'); 160 return null; 161 } 162 }
665 async stopConsole () { 666 log.debug('Stopping to listen for JavaScript console'); 667 await this.rpcClient.send('disableConsole', { 668 appIdKey: this.appIdKey, 669 pageIdKey: this.pageIdKey, 670 }); 671 }
58 function HTMLConsole(options) { 59 this.ele = $(options.selector); 60 this.data = []; 61 var _this = this; 62 var data; 63 if ((data = localStorage.getItem('consoleData'))) { 64 data = JSON.parse(data); 65 data.forEach(function(d) { 66 _this.dumpCallback(d.error ? d : null, d.error ? null : d); 67 }); 68 } 69 }