| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- $(function()
- {
- if(window.self == window)
- {
- $("a[data-dismiss='modal']").addClass('hidden');
- }
- $('.page-actions .btn-group > a.loadInModal').each(function()
- {
- var href = $(this).attr('href');
- if(href.indexOf('onlybody=yes') < 0) href = href + (href.indexOf('?') > 0 ? '&' : '?') + 'onlybody=yes';
- $(this).removeAttr('href').attr('data-rel', href);
- });
- $(document).off('click', '.deleteLeave');
- $(document).off('click', '.reviewPass');
- href = $('a.deleteLeave').attr('href');
- $('a.deleteLeave').attr('href', '###').attr('data-href', href);
- $(document).on('click', '.deleteLeave', function()
- {
- if(confirm(lang.confirmDelete))
- {
- $(this).text(lang.deleting);
- $.getJSON($(this).attr('data-href'), function(data)
- {
- if(data.result == 'success')
- {
- if(data.locate) return location.href = data.locate + (data.locate.indexOf('?') > 0 ? '&' : '?') + 'onlybody=yes';
- return location.reload();
- }
- else
- {
- alert(data.message);
- if(selecter.parents('#ajaxModal').size()) return $.reloadAjaxModal(1200);
- return location.reload();
- }
- });
- }
- return false;
- });
- href = $('a.reviewPass').attr('href');
- $('a.reviewPass').attr('href', '###').attr('data-href', href);
- $(document).on('click', '.reviewPass', function()
- {
- if(confirm(confirmReview.pass))
- {
- var selecter = $(this);
- $.getJSON(selecter.attr('data-href'), function(data)
- {
- if(data.result == 'success')
- {
- if(data.locate) return location.href = data.locate;
- return location.reload();
- }
- else
- {
- alert(data.message);
- return location.reload();
- }
- });
- }
- return false;
- });
- })
|