aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/slider/common.js
blob: df53cda4ff3ded000c139f52bd1cf669671d2316 (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
define( [
	"lib/common",
	"ui/widgets/slider"
], function( common ) {

common.testWidget( "slider", {
	defaults: {
		animate: false,
		cancel: "input, textarea, button, select, option",
		classes: {
			"ui-slider": "ui-corner-all",
			"ui-slider-handle": "ui-corner-all",
			"ui-slider-range": "ui-corner-all ui-widget-header"
		},
		delay: 0,
		disabled: false,
		distance: 0,
		max: 100,
		min: 0,
		orientation: "horizontal",
		range: false,
		step: 1,
		value: 0,
		values: null,

		// Callbacks
		create: null,
		change: null,
		slide: null,
		start: null,
		stop: null
	}
} );

} );
backport/30/fix_move_on_same_bucket Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/DatabaseException.php
blob: c0bb3eb71718fef136b9df78acd996f1c53c3947 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

/**
 * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-only
 */
namespace OC;

class DatabaseException extends \Exception {
}