aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/widget.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui/widget.js b/ui/widget.js
index e38c0c871..c82b95326 100644
--- a/ui/widget.js
+++ b/ui/widget.js
@@ -225,12 +225,14 @@ $.widget.bridge = function( name, object ) {
}
if ( !instance ) {
- return $.error( "cannot call methods on " + name + " prior to initialization; " +
+ return $.error( "cannot call methods on " + name +
+ " prior to initialization; " +
"attempted to call method '" + options + "'" );
}
if ( !$.isFunction( instance[ options ] ) || options.charAt( 0 ) === "_" ) {
- return $.error( "no such method '" + options + "' for " + name + " widget instance" );
+ return $.error( "no such method '" + options + "' for " + name +
+ " widget instance" );
}
methodValue = instance[ options ].apply( instance, args );
/extra_files_integrity_check'>artonge/fix/extra_files_integrity_check Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/ObjectStore/Mapper.php
blob: e1174a285a6bfb46fcff09e58c01590db1187013 (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