You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(task!=='reset'||confirm(Joomla.JText._('COM_PATCHTESTER_CONFIRM_RESET','Resetting will attempt to revert all applied patches and removes all backed up files. This may result in a corrupted environment. Are you sure you want to continue?'))){
14
+
Joomla.submitform(task);
15
+
}
16
+
};
17
+
18
+
constPatchTester={
19
+
/**
20
+
* Process the patch action
21
+
*
22
+
* @param {String} task The task to perform
23
+
* @param {Number} id The item ID
24
+
*/
25
+
submitpatch: function(task,id){
26
+
varidField=document.getElementById('pull_id');
27
+
idField.value=id;
28
+
29
+
Joomla.submitform(task);
30
+
}
31
+
};
14
32
15
-
/**
16
-
* EventListener which listens on submitPatch Button,
if(task!=='reset'||confirm(Joomla.JText._('COM_PATCHTESTER_CONFIRM_RESET','Resetting will attempt to revert all applied patches and removes all backed up files. This may result in a corrupted environment. Are you sure you want to continue?'))){
0 commit comments