Fix property access of undefined

pull/282/head
Lennart Kats 2016-03-30 11:42:37 +00:00
rodzic f7edb6e1a8
commit c1f00813ea
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -32,7 +32,9 @@ define(function(require, module, exports) {
title = title || "This is a Premium feature";
header = header || "Upgrade to Premium Now!";
msg = msg || 'A better, faster, more versatile Cloud9 is just a click away. Check out our <a href="https://c9.io/pricing" target="_blank">amazing premium plans</a>.'
onYes = onYes || function() {};
onNo = onNo || function() {};
msg = msg || 'A better, faster, more versatile Cloud9 is just a click away. Check out our <a href="https://c9.io/pricing" target="_blank">amazing premium plans</a>.';
plugin.title = title;
plugin.heading = options && options.isHTML ? header : util.escapeXml(header);