Added Google Translate dropdown to the 'Options' pane.

This commit is contained in:
n1474335 2017-04-25 14:14:11 +00:00
parent 7e7da26f29
commit b2cfe27a05
3 changed files with 19 additions and 0 deletions

View file

@ -305,6 +305,11 @@ module.exports = function (grunt) {
// Add Google Analytics code to index.html
content = content.replace("</body></html>",
grunt.file.read("src/web/static/ga.html") + "</body></html>");
// Add Google Translate code to index.html
content = content.replace("<!-- Google Translate placeholder -->",
grunt.file.read("src/web/static/gt.html"));
return grunt.template.process(content);
}
},