/* * Copyright (c) 2018 * * This file is licensed under the Affero General Public License version 3 * or later. * * See the COPYING-README file. * */ (function() { var OperationProgressBar = OC.Backbone.View.extend({ tagName: 'div', id: 'uploadprogresswrapper', events: { 'click button.stop': '_onClickCancel' }, render: function() { this.$el.html(OCA.Files.Templates['operationprogressbar']({ textCancelButton: t('Cancel operation') })); this.setProgressBarText(t('Uploading …'), t('…')); }, hideProgressBar: function() { var self = this; $('#uploadprogresswrapper .stop').fadeOut(); $('#uploadprogressbar').fadeOut(function() { self.$el.trigger(new $.Event('resized')); }); }, hideCancelButton: function() { var self = this; $('#uploadprogresswrapper .stop').fadeOut(function() { self.$el.trigger(new $.Event('resized')); }); }, showProgressBar: function(showCancelButton) { if (showCancelButton) { showCancelButton = true; } $('#uploadprogressbar').progressbar({value: 0}); if(showCancelButton) { $('#uploadprogresswrapper .stop').show(); } else { $('#uploadprogresswrapper .stop').hide(); } $('#uploadprogresswrapper .label').show(); $('#uploadprogressbar').fadeIn(); this.$el.trigger(new $.Event('resized')); }, setProgressBarValue: function(value) { $('#uploadprogressbar').progressbar({value: value}); }, setProgressBarText: function(textDesktop, textMobile, title) { var labelHtml = OCA.Files.Templates['operationprogressbarlabel']({textDesktop: textDesktop, textMobile: textMobile}); $('#uploadprogressbar .ui-progressbar-value').html(labelHtml); $('#uploadprogressbar .ui-progressbar-value>em').addClass('inner'); $('#uploadprogressbar>em').replaceWith(labelHtml); $('#uploadprogressbar>em').addClass('outer'); $('#uploadprogressbar').tooltip({placement: 'bottom', container: '#uploadprogresswrapper'}); if (title) { $('#uploadprogressbar').attr('data-original-title', title); $('#uploadprogresswrapper .tooltip-inner').text(title); } if(textDesktop || textMobile) { $('#uploadprogresswrapper .stop').show(); } }, _onClickCancel: function (event) { this.trigger('cancel'); return false; } }); OCA.Files.OperationProgressBar = OperationProgressBar; })(OC, OCA); ption> Continuous Inspection: https://github.com/SonarSource/sonarqubewww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/KEYS
blob: 0202c8b99e67d463247fdd9594718e163567ceb6 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111