2015-04-17 15:42:52 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
pandora.ui.licenseDialog = function() {
|
|
|
|
|
|
|
|
var that = pandora.ui.iconDialog({
|
2015-04-19 09:09:12 +00:00
|
|
|
buttons: [
|
|
|
|
Ox.Button({
|
|
|
|
disabled: true,
|
|
|
|
id: 'close',
|
|
|
|
title: Ox._('Close')
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
click: function() {
|
|
|
|
that.close();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
],
|
|
|
|
content: Ox._(
|
|
|
|
'This installation of <b>pan.do/ra</b> is unlicensed. '
|
|
|
|
+ 'Please contact your vendor for more information on '
|
|
|
|
+ 'how to acquire a license or renew an expired one.'
|
|
|
|
),
|
|
|
|
title: Ox._('License')
|
|
|
|
})
|
|
|
|
.bindEvent({
|
|
|
|
open: function() {
|
|
|
|
setTimeout(function() {
|
|
|
|
that.enableButton('close');
|
2015-04-29 12:07:52 +00:00
|
|
|
}, 5000);
|
2015-04-19 09:09:12 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-04-17 16:05:09 +00:00
|
|
|
return that;
|
2015-04-19 09:09:12 +00:00
|
|
|
|
2015-04-17 15:42:52 +00:00
|
|
|
};
|