This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit dc574947 authored by Michael Breu's avatar Michael Breu :speech_balloon:
Browse files

Fixing weird compile problem!

parent 3ec1cd5f
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
......@@ -48,7 +48,7 @@ export class TeaserContentComponent implements OnInit {
(data: Array<AutoCompletionEntry>) => {
this.programmingLanguages = data;
this.programmingLanguageCloudData = [];
this.programmingLanguages.forEach(pl => this.programmingLanguageCloudData.push( {text: pl.target.toString(), weight: pl.hitCount.valueOf(), color: this.randomColor(new Color('#aaaaff'), new Color('#000044')).getHex()}))
this.programmingLanguages.forEach(pl => this.programmingLanguageCloudData.push( {text: pl.target.toString(), weight: pl.hitCount.valueOf(), color: this.randomColor(new Color('#2222ff'), new Color('#004444')).getHex()}))
},
() => {
alert('Initialization of programming languages failed');
......
......@@ -25,7 +25,7 @@
"angularCompilerOptions": {
"strictInjectionParameters": true,
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"strictTemplates": false,
"preserveWhitespaces": true
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment