chrome-extension-angular-base icon indicating copy to clipboard operation
chrome-extension-angular-base copied to clipboard

A base project to get started creating Chrome Extensions with AngularJS, including Bootstrap, jQuery, Mocha, Chai, SinonJS, with a popup app, content scripts, and a background page.

Results 1 chrome-extension-angular-base issues
Sort by recently updated
recently updated
newest added

I'm curious about this code: ``` angular.module('popup', [ 'popup.services', 'popup.controllers' ]); ``` Where does the dotted notation for the module dependencies come from, and what does it reference? There are...