This file contains hidden or 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
### global Foundation:false ### | |
'use strict' | |
define [ | |
'jquery' | |
'app' | |
'angular' | |
'angular.mocks' |
This file contains hidden or 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 strict' | |
define [ | |
'jquery' | |
'angular' | |
], ($, Angular) -> | |
###* | |
# Registry of directives |
This file contains hidden or 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 strict' | |
define [ | |
'jquery' | |
'angular' | |
], ($, Angular) -> | |
###* | |
# Registry of burning hours service | |
# @namespace App.services.burningHoursSrvc |
This file contains hidden or 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 strict' | |
define [ | |
'jquery' | |
'angular' | |
], ($, Angular) -> | |
###* | |
# Registry of message service | |
# @namespace App.services.messageSrvc |
This file contains hidden or 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 strict' | |
define [ | |
'jquery' | |
'angular' | |
], ($, Angular) -> | |
###* | |
# Registry of module kongcat | |
# @namespace App.kongcat |
This file contains hidden or 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
var http = require('http'), | |
dispatcher = require('httpdispatcher'), | |
PORT = 3000; | |
dispatcher.onGet('/', function (req, res) { | |
res.writeHead(200, { 'Content-Type': 'text/plain' }); | |
res.end('Server running'); | |
}); | |
dispatcher.onGet('/json', function (req, res) { |
This file contains hidden or 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
// .eslintrc | |
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops |
NewerOlder