Skip to content

Commit

Permalink
Fix vscode intellisense
Browse files Browse the repository at this point in the history
  • Loading branch information
meulta committed May 10, 2016
1 parent f4be5b5 commit 68723d7
Show file tree
Hide file tree
Showing 11 changed files with 2,172 additions and 15 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,6 +1,5 @@
npm-debug.log
*.log
tsconfig.json
/Plugins/obj
**/node_modules
sync.bat
Expand Down
Expand Up @@ -206,7 +206,7 @@
var styles = winObject.getComputedStyle(element);
var l = [];
for (var style in styles) {
if (isNaN(style) && style !== "parentRule" && style !== "length" && style !== "cssText" && typeof styles[style] !== 'function' && styles[style]) {
if (isNaN(Number(style)) && style !== "parentRule" && style !== "length" && style !== "cssText" && typeof styles[style] !== 'function' && styles[style]) {

l.push({ name: style, value: styles[style] });
}
Expand Down
Expand Up @@ -867,7 +867,6 @@
case "mousemove": $(node).addClass("link-hovered");
default: return true;
}
return true;
}
}
else{
Expand Down
Expand Up @@ -355,22 +355,16 @@
switch (this.entry.type) {
case "log":
return "logMessage";
break;
case "debug":
return "logDebug";
break;
case "info":
return "logInfo";
break;
case "warn":
return "logWarning";
break;
case "error":
return "logError";
break;
case "exception":
return "logException";
break;
default:
return "logMessage";
}
Expand Down
1 change: 0 additions & 1 deletion Plugins/Vorlon/plugins/office/vorlon.office.client.ts
Expand Up @@ -244,7 +244,6 @@ module VORLON {
}
return value;
});
cache = null;
}

public getAsyncResult(deferred: any): Object {
Expand Down
5 changes: 5 additions & 0 deletions Plugins/Vorlon/tsconfig.json
@@ -0,0 +1,5 @@
{
"compilerOptions": {
"target": "ES5"
}
}

0 comments on commit 68723d7

Please sign in to comment.