zoneminder/web/skins/classic/js/dark.js

71 lines
3.3 KiB
JavaScript
Raw Normal View History

2015-07-23 20:12:32 +08:00
//
// ZoneMinder base static javascript file, $Date$, $Revision$
// Copyright (C) 2001-2008 Philip Coombes
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2015-07-23 20:12:32 +08:00
//
//
// This file should only contain static JavaScript and no php.
// Use skin.js.php for JavaScript that need pre-processing
//
// Javascript window sizes
var popupSizes = {
2016-12-21 23:46:42 +08:00
'bandwidth': { 'width': 300, 'height': 200 },
2015-07-23 20:12:32 +08:00
'console': { 'width': 750, 'height': 312 },
'control': { 'width': 380, 'height': 480 },
'controlcaps': { 'width': 780, 'height': 320 },
'controlcap': { 'width': 400, 'height': 400 },
'cycle': { 'addWidth': 32, 'minWidth': 384, 'addHeight': 62 },
'device': { 'width': 260, 'height': 150 },
'devices': { 'width': 400, 'height': 240 },
'donate': { 'width': 500, 'height': 280 },
'event': { 'addWidth': 108, 'minWidth': 496, 'addHeight': 230, 'minHeight': 540 },
2017-06-06 07:52:32 +08:00
'eventdetail': { 'width': 600, 'height': 420 },
2015-07-23 20:12:32 +08:00
'events': { 'width': 960, 'height': 780 },
'export': { 'width': 400, 'height': 340 },
2017-06-19 22:18:44 +08:00
'filter': { 'width': 900, 'height': 700 },
2017-07-06 22:48:52 +08:00
'frame': { 'addWidth': 32, 'minWidth': 384, 'addHeight': 200 },
'frames': { 'width': 600, 'height': 700 },
2016-05-02 23:56:42 +08:00
'function': { 'width': 300, 'height': 160 },
2015-12-19 02:30:42 +08:00
'group': { 'width': 360, 'height': 300 },
'groups': { 'width': 540, 'height': 420 },
2015-07-23 20:12:32 +08:00
'image': { 'addWidth': 48, 'addHeight': 80 },
'log': { 'width': 1080, 'height': 720 },
'login': { 'width': 720, 'height': 480 },
2016-07-23 04:04:18 +08:00
'logout': { 'width': 260, 'height': 300 },
'monitor': { 'width': 600, 'height': 780 },
2015-07-23 20:12:32 +08:00
'monitorpreset':{ 'width': 440, 'height': 200 },
'monitorprobe': { 'width': 500, 'height': 240 },
'monitorselect':{ 'width': 160, 'height': 200 },
'montage': { 'width': -1, 'height': -1 },
2016-08-10 01:09:47 +08:00
'onvifprobe': { 'width': 700, 'height': 500 },
2015-07-23 20:12:32 +08:00
'optionhelp': { 'width': 400, 'height': 320 },
'options': { 'width': 1000, 'height': 660 },
'preset': { 'width': 300, 'height': 120 },
'settings': { 'width': 220, 'height': 225 },
'state': { 'width': 370, 'height': 134 },
'stats': { 'width': 840, 'height': 200 },
'timeline': { 'width': 760, 'height': 540 },
'user': { 'width': 360, 'height': 420 },
'version': { 'width': 360, 'height': 140 },
'video': { 'width': 420, 'height': 360 },
'videoview': { 'addWidth': 48, 'addHeight': 80 },
'watch': { 'addWidth': 96, 'minWidth': 420, 'addHeight': 384 },
2017-04-06 04:09:06 +08:00
'zone': { 'addWidth': 520, 'addHeight': 260, 'minHeight': 600 },
2015-07-23 20:12:32 +08:00
'zones': { 'addWidth': 72, 'addHeight': 232 }
};