move functions used in html to 'exported' list
This commit is contained in:
parent
5b7f59aa0d
commit
4bd52d7ddf
1 changed files with 11 additions and 9 deletions
|
@ -1,4 +1,6 @@
|
||||||
/* globals wipPrefixes, issuesTribute, emojiTribute */
|
/* globals wipPrefixes, issuesTribute, emojiTribute */
|
||||||
|
/* exported timeAddManual, toggleStopwatch, cancelStopwatch, initHeatmap */
|
||||||
|
/* exported toggleDeadlineForm, setDeadline, deleteDependencyModal, cancelCodeComment, onOAuthLoginClick */
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
function htmlEncode(text) {
|
function htmlEncode(text) {
|
||||||
|
@ -2436,7 +2438,7 @@ function initVueApp() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function timeAddManual() { /* eslint-disable-line no-unused-vars */
|
function timeAddManual() {
|
||||||
$('.mini.modal')
|
$('.mini.modal')
|
||||||
.modal({
|
.modal({
|
||||||
duration: 200,
|
duration: 200,
|
||||||
|
@ -2447,14 +2449,14 @@ function timeAddManual() { /* eslint-disable-line no-unused-vars */
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggleStopwatch() { /* eslint-disable-line no-unused-vars */
|
function toggleStopwatch() {
|
||||||
$("#toggle_stopwatch_form").submit();
|
$("#toggle_stopwatch_form").submit();
|
||||||
}
|
}
|
||||||
function cancelStopwatch() { /* eslint-disable-line no-unused-vars */
|
function cancelStopwatch() {
|
||||||
$("#cancel_stopwatch_form").submit();
|
$("#cancel_stopwatch_form").submit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function initHeatmap(appElementId, heatmapUser, locale) { /* eslint-disable-line no-unused-vars */
|
function initHeatmap(appElementId, heatmapUser, locale) {
|
||||||
var el = document.getElementById(appElementId);
|
var el = document.getElementById(appElementId);
|
||||||
if (!el) {
|
if (!el) {
|
||||||
return;
|
return;
|
||||||
|
@ -2901,11 +2903,11 @@ function initTopicbar() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
function toggleDeadlineForm() { /* eslint-disable-line no-unused-vars */
|
function toggleDeadlineForm() {
|
||||||
$('#deadlineForm').fadeToggle(150);
|
$('#deadlineForm').fadeToggle(150);
|
||||||
}
|
}
|
||||||
|
|
||||||
function setDeadline() { /* eslint-disable-line no-unused-vars */
|
function setDeadline() {
|
||||||
var deadline = $('#deadlineDate').val();
|
var deadline = $('#deadlineDate').val();
|
||||||
updateDeadline(deadline);
|
updateDeadline(deadline);
|
||||||
}
|
}
|
||||||
|
@ -2947,7 +2949,7 @@ function updateDeadline(deadlineString) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function deleteDependencyModal(id, type) { /* eslint-disable-line no-unused-vars */
|
function deleteDependencyModal(id, type) {
|
||||||
$('.remove-dependency')
|
$('.remove-dependency')
|
||||||
.modal({
|
.modal({
|
||||||
closable: false,
|
closable: false,
|
||||||
|
@ -2990,7 +2992,7 @@ function initIssueList() {
|
||||||
})
|
})
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
function cancelCodeComment(btn) { /* eslint-disable-line no-unused-vars */
|
function cancelCodeComment(btn) {
|
||||||
var form = $(btn).closest("form");
|
var form = $(btn).closest("form");
|
||||||
if(form.length > 0 && form.hasClass('comment-form')) {
|
if(form.length > 0 && form.hasClass('comment-form')) {
|
||||||
form.addClass('hide');
|
form.addClass('hide');
|
||||||
|
@ -2999,7 +3001,7 @@ function cancelCodeComment(btn) { /* eslint-disable-line no-unused-vars */
|
||||||
form.closest('.comment-code-cloud').remove()
|
form.closest('.comment-code-cloud').remove()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function onOAuthLoginClick() { /* eslint-disable-line no-unused-vars */
|
function onOAuthLoginClick() {
|
||||||
var oauthLoader = $('#oauth2-login-loader');
|
var oauthLoader = $('#oauth2-login-loader');
|
||||||
var oauthNav = $('#oauth2-login-navigator');
|
var oauthNav = $('#oauth2-login-navigator');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue