Merge pull request #6873 from Krausus/LetUsNotBreakIESupport

Fixes personal crafting UI template for older browsers
This commit is contained in:
Fox McCloud
2017-03-22 23:00:34 -04:00
committed by GitHub
+1 -1
View File
@@ -1,5 +1,5 @@
<script>
{{var tooltiptext = function(req_text, catalyst_text, tool_text) { let text = ""; if(req_text){text += "REQUIREMENTS: " + req_text + " ";} if(catalyst_text){text += "CATALYSTS: " + catalyst_text + " ";} if(tool_text){text += "TOOLS: " + tool_text;}return text;};}}
{{var tooltiptext = function(req_text, catalyst_text, tool_text) { var text = ""; if(req_text){text += "REQUIREMENTS: " + req_text + " ";} if(catalyst_text){text += "CATALYSTS: " + catalyst_text + " ";} if(tool_text){text += "TOOLS: " + tool_text;}return text;};}}
</script>