Lines Matching full:data

8     function toggleHookIndicator(data, $this) {  argument
10 if ('id' in $this.data()) {
12 $this.removeAttr('data-id');
16 if (typeof data.id !== 'undefined') {
17 $this.data('id', data.id);
22 let data;
28 if (typeof response.data !== 'undefined') {
29 data = response.data;
31 data = jqXHR.responseText;
34 data = jqXHR.responseText;
41 $this.text(data);
49 const servicename = $this.parents('.repo_area').data('service');
56 data: { property
59 project: $this.data('project'),
60 hookid: $this.data('id'),
67 const data = response.data;
69 toggleHookIndicator(data, $this);
82 … $repoadmin.find('.service_wrapper').not('[data-service="' + $tabs.data('service') + '"]').hide();
85 const servicename = $this.data('service');
88 $repoadmin.find('.service_wrapper[data-service="' + servicename + '"]').show();
89 $repoadmin.find('.service_wrapper').not('[data-service="' + servicename + '"]').hide();
94 const servicename = $this.closest('form').data('service');
95 const $reposDiv = jQuery('.repo_area[data-service="' + servicename + '"]');
102 data: { property
111 const data = response.data;
113 $reposDiv.html(data);
131 data: { property
140 const data = response.data;
145 const count = jQuery.isNumeric(data.count) ? data.count : 0;
146 if (jQuery.isNumeric(data.total) && data.total > 0) {
147 total = data.total;
150 const statusText = LANG.plugins.issuelinks['status:' + data.status];
157 if (data.status && data.status === 'done') {
177 const servicename = $this.closest('[data-service]').data('service');
178 const project = $this.data('project');
182 data: { property