Skip to content
This repository has been archived by the owner on Oct 25, 2019. It is now read-only.

Commit

Permalink
Issue #24: Fixing tile for 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdewinne committed Jun 14, 2017
1 parent 85f37ce commit ee9ad1b
Showing 1 changed file with 8 additions and 1 deletion.
Expand Up @@ -49,7 +49,14 @@
}

function tileConfigurationIsPopulated() {
var config = tile.properties;
var config;
// old style pre 7.0
if (tile.properties == null) {
config = tile.configurationProperties;
} else {
// new style since 7.0
config = tile.properties;
}
return !_.isEmpty(config.servicenowServer);
}

Expand Down

0 comments on commit ee9ad1b

Please sign in to comment.