1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 19:54:12 +02:00

[ticket/10271] Reduced calls to $ in the AJAX JavaScript.

PHPBB3-10271
This commit is contained in:
Callum Macrae
2011-10-22 16:31:52 +01:00
committed by Igor Wiedler
parent 1c5b1ede1c
commit 95659ba92c
3 changed files with 27 additions and 20 deletions

View File

@@ -35,16 +35,18 @@ phpbb.add_ajax_callback('row_delete', function(el) {
// This handles friend / foe additions removals.
phpbb.add_ajax_callback('zebra', function(el, res) {
if (res.success) {
$('.zebra').html(res.MESSAGE_TEXT);
$($('.zebra').get(1)).remove();
var zebra = $('.zebra');
zebra.html(res.MESSAGE_TEXT);
$(zebra.get(1)).remove();
}
});;
$('[data-ajax]').each(function() {
var fn = ($(this).data('ajax') !== 'true') ? $(this).data('ajax') : null;
phpbb.ajaxify({selector: this}, $(this).data('refresh') !== undefined, fn);
var $this = $(this);
var fn = ($this.data('ajax') !== 'true') ? $this.data('ajax') : null;
phpbb.ajaxify({selector: this}, $this.data('refresh') !== undefined, fn);
});