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
Azure Resource Manager Tools | |
Document This | |
editorconfig | |
eslint | |
htmlhint | |
Latest TypeScript and JavaScript Grammar | |
JavaScript Atom Grammar | |
tslint |
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
{ | |
"attr-lowercase": true, | |
"attr-no-duplication": true, | |
"attr-value-double-quotes": true, | |
"attr-value-not-empty": false, | |
"attr-unsafe-chars": true, | |
"doctype-first": false, | |
"doctype-html5": false, | |
"head-script-disabled": true, | |
"href-abs-or-rel": false, |
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
function setContextMenuPostion(event, contextMenu) { | |
var mousePosition = {}; | |
var menuPostion = {}; | |
var menuDimension = {}; | |
menuDimension.x = contextMenu.outerWidth(); | |
menuDimension.y = contextMenu.outerHeight(); | |
mousePosition.x = event.pageX; | |
mousePosition.y = event.pageY; |