diff --git a/plugins/c9.ide.help/help.js b/plugins/c9.ide.help/help.js index 22420ec3..892445e6 100644 --- a/plugins/c9.ide.help/help.js +++ b/plugins/c9.ide.help/help.js @@ -22,6 +22,9 @@ define(function(require, exports, module) { var aboutDialog; function load() { + var year = (new Date()).getFullYear(); + markup = formatString(markup, year); + menus.addItemByPath("Cloud9/About Cloud9", new ui.item({ onclick: function() { showAbout(); } }), 100, plugin); @@ -135,6 +138,13 @@ define(function(require, exports, module) { var version = c9.version.replace(/([a-f\d]{10})[a-f\d]{30}/, "$1"); document.getElementById("c9Version").textContent = "Version " + version; } + + function formatString(str) { + var args = Array.prototype.slice.call(arguments).slice(1); + return str.replace(/{(\d+)}/g, function(match, number) { + return typeof args[number] != 'undefined' ? args[number] : match; + }); + } /***** Lifecycle *****/ diff --git a/plugins/c9.ide.help/help.xml b/plugins/c9.ide.help/help.xml index a34a9fb8..e457cbc5 100644 --- a/plugins/c9.ide.help/help.xml +++ b/plugins/c9.ide.help/help.xml @@ -25,7 +25,7 @@

-

© 2010 — 2017 Cloud9 Inc. All rights reserved

+

© 2010 — {0} Cloud9 Inc. All rights reserved