mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 00:45:34 +00:00
add click function for button.removefolder
add code which hides popovers when clicke somewhere on the page
This commit is contained in:
parent
b9ace5f6f7
commit
a0148fe37a
|
@ -1,5 +1,14 @@
|
|||
|
||||
$(document).ready( function() {
|
||||
/* close popovers when clicking somewhere except in the popover or the
|
||||
* remove icon
|
||||
*/
|
||||
$('html').on('click', function(e) {
|
||||
if (typeof $(e.target).data('original-title') == 'undefined' && !$(e.target).parents().is('.popover.in') && !$(e.target).is('.icon-remove')) {
|
||||
$('[data-original-title]').popover('hide');
|
||||
}
|
||||
});
|
||||
|
||||
$('body').on('hidden', '.modal', function () {
|
||||
$(this).removeData('modal');
|
||||
});
|
||||
|
@ -15,6 +24,9 @@ $(document).ready( function() {
|
|||
$(".chzn-select").chosen();
|
||||
$(".chzn-select-deselect").chosen({allow_single_deselect:true});
|
||||
|
||||
/* change the color and length of the bar graph showing the password
|
||||
* strength on each change to the passwod field.
|
||||
*/
|
||||
$(".pwd").passStrength({
|
||||
url: "../op/op.Ajax.php",
|
||||
onChange: function(data, target) {
|
||||
|
@ -152,6 +164,41 @@ $(document).ready( function() {
|
|||
);
|
||||
});
|
||||
|
||||
$('body').on('click', 'button.removefolder', function(ev){
|
||||
ev.preventDefault();
|
||||
attr_rel = $(ev.currentTarget).attr('rel');
|
||||
attr_msg = $(ev.currentTarget).attr('msg');
|
||||
attr_formtoken = $(ev.currentTarget).attr('formtoken');
|
||||
id = attr_rel;
|
||||
$.get('../op/op.Ajax.php',
|
||||
{ command: 'deletefolder', id: id, formtoken: attr_formtoken },
|
||||
function(data) {
|
||||
// console.log(data);
|
||||
if(data.success) {
|
||||
$('#table-row-folder-'+id).hide('slow');
|
||||
noty({
|
||||
text: attr_msg,
|
||||
type: 'success',
|
||||
dismissQueue: true,
|
||||
layout: 'topRight',
|
||||
theme: 'defaultTheme',
|
||||
timeout: 1500,
|
||||
});
|
||||
} else {
|
||||
noty({
|
||||
text: data.message,
|
||||
type: 'error',
|
||||
dismissQueue: true,
|
||||
layout: 'topRight',
|
||||
theme: 'defaultTheme',
|
||||
timeout: 3500,
|
||||
});
|
||||
}
|
||||
},
|
||||
'json'
|
||||
);
|
||||
});
|
||||
|
||||
$('a.addtoclipboard').click(function(ev){
|
||||
ev.preventDefault();
|
||||
attr_rel = $(ev.currentTarget).attr('rel');
|
||||
|
|
Loading…
Reference in New Issue
Block a user