This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Karma configuration | |
// Generated on Tue Apr 30 2013 07:58:45 GMT+0300 (GTB Summer Time) | |
// base path, that will be used to resolve files and exclude | |
basePath = '../'; | |
// list of files / patterns to load in the browser | |
files = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['angular', | |
'angularResource', | |
'controllers/controllers', | |
'services/services', | |
'filters/filters', | |
'directives/directives'], | |
function (angular) { | |
return angular.module('myapp', ['ngResource', | |
'myapp.controllers', | |
'myapp.services', |