2012-07-18 04:35:30 +06:00
|
|
|
|
function umbracoCheckUpgrade(result) {
|
2013-04-09 06:07:25 +06:00
|
|
|
|
if (result) {
|
|
|
|
|
|
if (result.UpgradeType.toLowerCase() != 'none') {
|
|
|
|
|
|
if (UmbSpeechBubble == null) {
|
|
|
|
|
|
InitUmbracoSpeechBubble();
|
|
|
|
|
|
}
|
|
|
|
|
|
var icon = 'info';
|
|
|
|
|
|
if (result.UpgradeType.toLowerCase() == 'critical') {
|
|
|
|
|
|
icon = 'error';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UmbSpeechBubble.ShowMessage(icon, 'Upgrade Available!', '<a style="text-decoration:none" target="_blank" href="' + result.UpgradeUrl + '">' + result.UpgradeComment + '</a>', true);
|
2012-07-18 04:35:30 +06:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|