mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:47:30 +02:00
Display up to 30 submenus for GOTO
This commit is contained in:
parent
79b11296f1
commit
2876338a97
1 changed files with 3 additions and 3 deletions
|
@ -10,8 +10,8 @@ const buildInfo = GetBuildInfo();
|
||||||
const osType = os.type();
|
const osType = os.type();
|
||||||
|
|
||||||
const notificationIcon = path.join(__dirname, '../../resources/console-notification.png');
|
const notificationIcon = path.join(__dirname, '../../resources/console-notification.png');
|
||||||
const STORIES_NOTIFICATION_POLL_TIME_MS = 15 * 1000;
|
const STORIES_NOTIFICATION_POLL_TIME_MS = 120 * 1000;
|
||||||
const PEOPLE_NOTIFICATION_POLL_TIME_MS = 15 * 1000;
|
const PEOPLE_NOTIFICATION_POLL_TIME_MS = 120 * 1000;
|
||||||
const WALLET_NOTIFICATION_POLL_TIME_MS = 600 * 1000;
|
const WALLET_NOTIFICATION_POLL_TIME_MS = 600 * 1000;
|
||||||
const MARKETPLACE_NOTIFICATION_POLL_TIME_MS = 600 * 1000;
|
const MARKETPLACE_NOTIFICATION_POLL_TIME_MS = 600 * 1000;
|
||||||
const OSX_CLICK_DELAY_TIMEOUT = 500;
|
const OSX_CLICK_DELAY_TIMEOUT = 500;
|
||||||
|
@ -354,7 +354,7 @@ HifiNotifications.prototype = {
|
||||||
'include_actions=announcement',
|
'include_actions=announcement',
|
||||||
'restriction=open,hifi',
|
'restriction=open,hifi',
|
||||||
'require_online=true',
|
'require_online=true',
|
||||||
'per_page=1'
|
'per_page=' + MAX_NOTIFICATION_ITEMS
|
||||||
];
|
];
|
||||||
var url = METAVERSE_SERVER_URL + STORIES_URL + '?' + options.join('&');
|
var url = METAVERSE_SERVER_URL + STORIES_URL + '?' + options.join('&');
|
||||||
// call a second time to determine if there are no more stories and we should
|
// call a second time to determine if there are no more stories and we should
|
||||||
|
|
Loading…
Reference in a new issue