{
"workbench.statusBar.visible": false,
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Atom One Dark",
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.fontLigatures": true,
"editor.formatOnSave": true,
Default options for Prettier - https://prettier.io/docs/en/options.html
.prettierrc
:
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
var keyCode = {
/**
* keypress event key-codes
*/
'keyPress': {
'GraveAccent': 96, // `
'One': 49, // 1
'Two': 50, // 2
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
@font-face { | |
/* ... */ | |
unicode-range: U+10D0-10F0; | |
} |
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
factory('cometd', function($rootScope) { | |
var cometd = $.cometd; | |
// Configure cometd | |
cometd.configure({ | |
url: location.protocol + '//' + location.host + config.contextPath + '/cometd', | |
logLevel: 'info' | |
}); | |
// Add a listener for the handshake *TODO* what should be done if message fails ? |
NewerOlder