aboutsummaryrefslogtreecommitdiffstats
path: root/demos/spinner/overflow.html
blob: 0b4985d29de99b522296a0b2321e8622af29c3d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
	<meta charset="utf-8">
	<title>jQuery UI Spinner - Overflow</title>
	<link rel="stylesheet" href="../../themes/base/all.css">
	<script src="../../external/jquery/jquery.js"></script>
	<script src="../../external/jquery-mousewheel/jquery.mousewheel.js"></script>
	<script src="../../ui/core.js"></script>
	<script src="../../ui/widget.js"></script>
	<script src="../../ui/button.js"></script>
	<script src="../../ui/spinner.js"></script>
	<link rel="stylesheet" href="../demos.css">
	<script>
	$(function() {
		$( "#spinner" ).spinner({
			spin: function( event, ui ) {
				if ( ui.value > 10 ) {
					$( this ).spinner( "value", -10 );
					return false;
				} else if ( ui.value < -10 ) {
					$( this ).spinner( "value", 10 );
					return false;
				}
			}
		});
	});
	</script>
</head>
<body>

<p>
	<label for="spinner">Select a value:</label>
	<input id="spinner" name="value" />
</p>

<div class="demo-description">
<p>
Overflowing spinner restricted to a range of -10 to 10.
For anything above 10, it'll overflow to -10, and the other way round.
</p>
</div>
</body>
</html>
tion value='backport/46140/stable30'>backport/46140/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/settings/js/log.js
blob: 43ef561f7ee143d5666a2c7a9add45913ae13531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
 * Copyright (c) 2012, Robin Appelman <icewind1991@gmail.com>
 * Copyright (c) 2013, Morris Jobke <morris.jobke@gmail.com>
 * This file is licensed under the Affero General Public License version 3 or later.
 * See the COPYING-README file.
 */

/* global formatDate */

OC.Log = {
	reload: function (count) {
		if (!count) {
			count = OC.Log.loaded;
		}
		OC.Log.loaded = 0;
		$('#log tbody').empty();
		OC.Log.getMore(count);
	},
	levels: ['Debug', 'Info', 'Warning', 'Error', 'Fatal'],
	loaded: 3,//are initially loaded
	getMore: function (count) {
		count = count || 10;
		$.get(OC.generateUrl('/settings/admin/log/entries'), {offset: OC.Log.loaded, count: count}, function (result) {
			OC.Log.addEntries(result.data);
			if (!result.remain) {
				$('#moreLog').hide();
			}
			$('#lessLog').show();
		});
	},
	showLess: function (count) {
		count = count || 10;
		//calculate remaining items - at least 3
		OC.Log.loaded = Math.max(3, OC.Log.loaded - count);
		$('#moreLog').show();
		// remove all non-remaining items
		$('#log tr').slice(OC.Log.loaded).remove();
		if (OC.Log.loaded <= 3) {
			$('#lessLog').hide();
		}
	},
	addEntries: function (entries) {
		for (var i = 0; i < entries.length; i++) {
			var entry = entries[i];
			var row = $('<tr/>');
			var levelTd = $('<td/>');
			levelTd.text(OC.Log.levels[entry.level]);
			row.append(levelTd);

			var appTd = $('<td/>');
			appTd.text(entry.app);
			row.append(appTd);

			var messageTd = $('<td/>');
			messageTd.addClass('log-message');
			messageTd.text(entry.message);
			row.append(messageTd);

			var timeTd = $('<td/>');
			timeTd.addClass('date');
			if (isNaN(entry.time)) {
				timeTd.text(entry.time);
			} else {
				timeTd.text(formatDate(entry.time * 1000));
			}
			row.append(timeTd);
			$('#log').append(row);
		}
		OC.Log.loaded += entries.length;
	}
};

$(document).ready(function () {
	$('#moreLog').click(function () {
		OC.Log.getMore();
	});
	$('#lessLog').click(function () {
		OC.Log.showLess();
	});
});