nextcloud/apps/updatenotification/js/notification.js

31 lines
723 B
JavaScript

/**
* Copyright (c) 2015 ownCloud Inc
*
* @author Morris Jobke <hey@morrisjobke.de>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
/**
* this gets only loaded if an update is available and then shows a temporary notification
*/
$(document).ready(function(){
var head = $('html > head'),
version = oc_updateState.updateVersion,
docLink = oc_updateState.updateLink,
text = t('core', '{version} is available. Get more information on how to update.', {version: version}),
element = $('<a>').attr('href', docLink).attr('target','_blank').text(text);
OC.Notification.showTemporary(
element,
{
isHTML: true
}
);
});