mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
As now, some UIPatterns are also jQuery plugins
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9051 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
b8a597e219
commit
e883af153e
1 changed files with 265 additions and 217 deletions
|
|
@ -96,8 +96,73 @@ jQuery(function($){
|
||||||
})
|
})
|
||||||
.end()
|
.end()
|
||||||
|
|
||||||
// Modal Window
|
// pagination
|
||||||
$('a.modalAnchor')
|
$.fn.xePagination = function(){
|
||||||
|
this
|
||||||
|
.find('span.tgContent').css('whiteSpace', 'nowrap').end()
|
||||||
|
.find('a.tgAnchor[href="#goTo"]')
|
||||||
|
.each(function(idx){
|
||||||
|
var $this = $(this);
|
||||||
|
$this.after( $($this.attr('href')) );
|
||||||
|
})
|
||||||
|
.end();
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
$('.pagination').xePagination();
|
||||||
|
|
||||||
|
// Portlet Action
|
||||||
|
$('.portlet .action')
|
||||||
|
.css({display:'none',position:'absolute'})
|
||||||
|
.parent()
|
||||||
|
.mouseleave(function(){ $(this).find('>.action').fadeOut(100); })
|
||||||
|
.mouseenter(function(){ $(this).find('>.action').fadeIn(100); })
|
||||||
|
.focusin(function(){ $(this).mouseenter() })
|
||||||
|
.focusout(function(){
|
||||||
|
var $this = $(this), timer;
|
||||||
|
|
||||||
|
clearTimeout($this.data('timer'));
|
||||||
|
timer = setTimeout(function(){ if(!$this.find(':focus').length) $this.mouseleave() }, 10);
|
||||||
|
|
||||||
|
$this.data('timer', timer);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Display the dashboard in two column
|
||||||
|
$('.dashboard>.section>.portlet:odd').after('<br style="clear:both" />');
|
||||||
|
|
||||||
|
|
||||||
|
// Popup list : 'Move to site' and 'Site map'
|
||||||
|
$('.header>.siteTool>a.i')
|
||||||
|
.bind('before-open.tc', function(){
|
||||||
|
$(this)
|
||||||
|
.addClass('active')
|
||||||
|
.next('div.tgContent')
|
||||||
|
.find('>.section:gt(0)').hide().end()
|
||||||
|
.find('>.btnArea>button').show();
|
||||||
|
})
|
||||||
|
.bind('after-close.tc', function(){
|
||||||
|
$(this).removeClass('active');
|
||||||
|
})
|
||||||
|
.next('#siteMapList')
|
||||||
|
.find('>.section:last')
|
||||||
|
.after('<p class="btnArea"><button type="button">› more</button></p>')
|
||||||
|
.find('+p>button')
|
||||||
|
.click(function(){
|
||||||
|
// Display all sections then hide this button
|
||||||
|
$(this).hide().parent().prevAll('.section').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// Modal Window
|
||||||
|
jQuery(function($){
|
||||||
|
|
||||||
|
$.fn.xeModalWindow = function(){
|
||||||
|
this
|
||||||
|
.not('.xe-modal-window')
|
||||||
|
.addClass('xe-modal-window')
|
||||||
|
.each(function(){
|
||||||
|
$( $(this).attr('href') ).addClass('x').hide();
|
||||||
|
})
|
||||||
.click(function(){
|
.click(function(){
|
||||||
var $this = $(this), $modal, $btnClose, disabled;
|
var $this = $(this), $modal, $btnClose, disabled;
|
||||||
|
|
||||||
|
|
@ -193,40 +258,21 @@ jQuery(function($){
|
||||||
$modal.fadeOut(duration, after);
|
$modal.fadeOut(duration, after);
|
||||||
$this.focus();
|
$this.focus();
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
$('a.modalAnchor').xeModalWindow();
|
||||||
|
|
||||||
$('div.modal').addClass('x').hide();
|
});
|
||||||
|
|
||||||
// pagination
|
// Content Toggler
|
||||||
$('.pagination')
|
jQuery(function($){
|
||||||
.find('span.tgContent').css('whiteSpace', 'nowrap').end()
|
|
||||||
.find('a.tgAnchor[href="#goTo"]')
|
|
||||||
.each(function(idx){
|
|
||||||
var $this = $(this);
|
|
||||||
$this.after( $($this.attr('href')) );
|
|
||||||
})
|
|
||||||
.end();
|
|
||||||
|
|
||||||
// Portlet Action
|
$.fn.xeContentToggler = function(){
|
||||||
$('.portlet .action')
|
this
|
||||||
.css({display:'none',position:'absolute'})
|
.not('.xe-content-toggler')
|
||||||
.parent()
|
.addClass('xe-content-toggler')
|
||||||
.mouseleave(function(){ $(this).find('>.action').fadeOut(100); })
|
.each(function(){
|
||||||
.mouseenter(function(){ $(this).find('>.action').fadeIn(100); })
|
$($(this).attr('href')).hide().focusout(focusoutContent);
|
||||||
.focusin(function(){ $(this).mouseenter() })
|
})
|
||||||
.focusout(function(){
|
|
||||||
var $this = $(this), timer;
|
|
||||||
|
|
||||||
clearTimeout($this.data('timer'));
|
|
||||||
timer = setTimeout(function(){ if(!$this.find(':focus').length) $this.mouseleave() }, 10);
|
|
||||||
|
|
||||||
$this.data('timer', timer);
|
|
||||||
});
|
|
||||||
|
|
||||||
// Display the dashboard in two column
|
|
||||||
$('.dashboard>.section>.portlet:odd').after('<br style="clear:both" />');
|
|
||||||
|
|
||||||
// Toggle Contents
|
|
||||||
$('a.tgAnchor')
|
|
||||||
.click(function(){
|
.click(function(){
|
||||||
var $this = $(this), $layer;
|
var $this = $(this), $layer;
|
||||||
|
|
||||||
|
|
@ -340,122 +386,114 @@ jQuery(function($){
|
||||||
$this.trigger('after-close.tc');
|
$this.trigger('after-close.tc');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('.tgContent')
|
|
||||||
.hide()
|
|
||||||
.focusout(function(event){
|
|
||||||
var $this = $(this), $anchor = $this.data('anchor');
|
|
||||||
setTimeout(function(){
|
|
||||||
if(!$this.find(':focus').length && $this.data('state') == 'showing') $anchor.trigger('close.tc');
|
|
||||||
}, 1);
|
|
||||||
})
|
|
||||||
|
|
||||||
// Popup list : 'Move to site' and 'Site map'
|
return this;
|
||||||
$('.header>.siteTool>a.i')
|
};
|
||||||
.bind('before-open.tc', function(){
|
|
||||||
$(this)
|
$('a.tgAnchor').xeContentToggler();
|
||||||
.addClass('active')
|
|
||||||
.next('div.tgContent')
|
function focusoutContent(event) {
|
||||||
.find('>.section:gt(0)').hide().end()
|
var $this = $(this), $anchor = $this.data('anchor');
|
||||||
.find('>.btnArea>button').show();
|
setTimeout(function(){
|
||||||
})
|
if(!$this.find(':focus').length && $this.data('state') == 'showing') $anchor.trigger('close.tc');
|
||||||
.bind('after-close.tc', function(){
|
}, 1);
|
||||||
$(this).removeClass('active');
|
};
|
||||||
})
|
|
||||||
.next('#siteMapList')
|
|
||||||
.find('>.section:last')
|
|
||||||
.after('<p class="btnArea"><button type="button">› more</button></p>')
|
|
||||||
.find('+p>button')
|
|
||||||
.click(function(){
|
|
||||||
// Display all sections then hide this button
|
|
||||||
$(this).hide().parent().prevAll('.section').show();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Module finder
|
// Module finder
|
||||||
jQuery(function($){
|
jQuery(function($){
|
||||||
|
|
||||||
$('.modulefinder')
|
$.fn.xeModuleFinder = function(){
|
||||||
.find('a.tgAnchor.findsite')
|
this
|
||||||
.bind('before-open.tc', function(){
|
.not('.xe-module-finder')
|
||||||
var $this, $ul, val;
|
.addClass('xe-module-finder')
|
||||||
|
.find('a.tgAnchor.findsite')
|
||||||
|
.bind('before-open.tc', function(){
|
||||||
|
var $this, $ul, val;
|
||||||
|
|
||||||
$this = $(this);
|
$this = $(this);
|
||||||
$ul = $($this.attr('href')).find('>ul');
|
$ul = $($this.attr('href')).find('>ul');
|
||||||
val = $this.prev('input:text').val();
|
val = $this.prev('input:text').val();
|
||||||
|
|
||||||
function on_complete(data) {
|
function on_complete(data) {
|
||||||
var $li, list = data.site_list, i, c;
|
var $li, list = data.site_list, i, c;
|
||||||
|
|
||||||
$ul.empty();
|
$ul.empty();
|
||||||
$this.closest('.modulefinder').find('.moduleList,.moduleIdList').attr('disabled','disabled');
|
$this.closest('.modulefinder').find('.moduleList,.moduleIdList').attr('disabled','disabled');
|
||||||
|
|
||||||
if(data.error || !$.isArray(list)) {
|
if(data.error || !$.isArray(list)) {
|
||||||
$this.trigger('close.tc');
|
$this.trigger('close.tc');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for(i=0,c=list.length; i < c; i++) {
|
for(i=0,c=list.length; i < c; i++) {
|
||||||
$li = $('<li />').appendTo($ul);
|
$li = $('<li />').appendTo($ul);
|
||||||
$('<button type="button" />').text(list[i].domain).data('site_srl', list[i].site_srl).appendTo($li);
|
$('<button type="button" />').text(list[i].domain).data('site_srl', list[i].site_srl).appendTo($li);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$.exec_json('admin.getSiteAllList', {domain:val}, on_complete);
|
$.exec_json('admin.getSiteAllList', {domain:val}, on_complete);
|
||||||
})
|
})
|
||||||
.end()
|
.end()
|
||||||
.find('.tgContent.suggestion')
|
.find('.tgContent.suggestion')
|
||||||
.delegate('button','click',function(){
|
.delegate('button','click',function(){
|
||||||
var $this, $finder;
|
var $this, $finder;
|
||||||
|
|
||||||
$this = $(this);
|
$this = $(this);
|
||||||
$finder = $this.closest('.modulefinder');
|
$finder = $this.closest('.modulefinder');
|
||||||
|
|
||||||
function on_complete(data) {
|
function on_complete(data) {
|
||||||
var $mod_select, list = data.module_list, x;
|
var $mod_select, list = data.module_list, x;
|
||||||
|
|
||||||
if(data.error || !list) return;
|
if(data.error || !list) return;
|
||||||
|
|
||||||
$mod_select = $finder.find('.moduleList').data('module_list', list).removeAttr('disabled').empty();
|
$mod_select = $finder.find('.moduleList').data('module_list', list).removeAttr('disabled').empty();
|
||||||
for(x in list) {
|
for(x in list) {
|
||||||
|
if(!list.hasOwnProperty(x)) continue;
|
||||||
|
$('<option />').attr('value', x).text(list[x].title).appendTo($mod_select);
|
||||||
|
}
|
||||||
|
$mod_select.prop('selectedIndex', 0).change().focus();
|
||||||
|
|
||||||
|
if(!$mod_select.is(':visible')) {
|
||||||
|
$mod_select
|
||||||
|
.slideDown(100, function(){
|
||||||
|
$finder.find('.moduleIdList:not(:visible)').slideDown(100).trigger('show');
|
||||||
|
})
|
||||||
|
.trigger('show');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$finder.find('a.tgAnchor.findsite').trigger('close.tc');
|
||||||
|
|
||||||
|
$.exec_json('module.procModuleAdminGetList', {site_srl:$this.data('site_srl')}, on_complete);
|
||||||
|
})
|
||||||
|
.end()
|
||||||
|
.find('.moduleList,.moduleIdList').hide().end()
|
||||||
|
.find('.moduleList')
|
||||||
|
.change(function(){
|
||||||
|
var $this, $mid_select, val, list;
|
||||||
|
|
||||||
|
$this = $(this);
|
||||||
|
val = $this.val();
|
||||||
|
list = $this.data('module_list');
|
||||||
|
|
||||||
|
if(!list[val]) return;
|
||||||
|
|
||||||
|
list = list[val].list;
|
||||||
|
$mid_select = $this.closest('.modulefinder').find('.moduleIdList').removeAttr('disabled').empty();
|
||||||
|
|
||||||
|
for(var x in list) {
|
||||||
if(!list.hasOwnProperty(x)) continue;
|
if(!list.hasOwnProperty(x)) continue;
|
||||||
$('<option />').attr('value', x).text(list[x].title).appendTo($mod_select);
|
$('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select);
|
||||||
}
|
}
|
||||||
$mod_select.prop('selectedIndex', 0).change().focus();
|
$mid_select.prop('selectedIndex', 0);
|
||||||
|
});
|
||||||
|
|
||||||
if(!$mod_select.is(':visible')) {
|
return this;
|
||||||
$mod_select
|
};
|
||||||
.slideDown(100, function(){
|
$('.modulefinder').xeModuleFinder();
|
||||||
$finder.find('.moduleIdList:not(:visible)').slideDown(100).trigger('show');
|
|
||||||
})
|
|
||||||
.trigger('show');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$finder.find('a.tgAnchor.findsite').trigger('close.tc');
|
|
||||||
|
|
||||||
$.exec_json('module.procModuleAdminGetList', {site_srl:$this.data('site_srl')}, on_complete);
|
|
||||||
})
|
|
||||||
.end()
|
|
||||||
.find('.moduleList,.moduleIdList').hide().end()
|
|
||||||
.find('.moduleList')
|
|
||||||
.change(function(){
|
|
||||||
var $this, $mid_select, val, list;
|
|
||||||
|
|
||||||
$this = $(this);
|
|
||||||
val = $this.val();
|
|
||||||
list = $this.data('module_list');
|
|
||||||
|
|
||||||
if(!list[val]) return;
|
|
||||||
|
|
||||||
list = list[val].list;
|
|
||||||
$mid_select = $this.closest('.modulefinder').find('.moduleIdList').removeAttr('disabled').empty();
|
|
||||||
|
|
||||||
for(var x in list) {
|
|
||||||
if(!list.hasOwnProperty(x)) continue;
|
|
||||||
$('<option />').attr('value', list[x].module_srl).text(list[x].browser_title).appendTo($mid_select);
|
|
||||||
}
|
|
||||||
$mid_select.prop('selectedIndex', 0);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Sortable table
|
// Sortable table
|
||||||
|
|
@ -465,118 +503,126 @@ var
|
||||||
dragging = false,
|
dragging = false,
|
||||||
$holder = $('<tr class="placeholder"><td> </td></tr>');
|
$holder = $('<tr class="placeholder"><td> </td></tr>');
|
||||||
|
|
||||||
$('table.sortable')
|
$.fn.xeSortableTable = function(){
|
||||||
.delegate('button.dragBtn', 'mousedown.st', function(event){
|
this
|
||||||
var $this, $tr, $table, $th, height, width, offset, position, offsets, i, dropzone, cols;
|
.not('.xe-sortable-table')
|
||||||
|
.addClass('xe-sortable-table')
|
||||||
|
.delegate('button.dragBtn', 'mousedown.st', function(event){
|
||||||
|
var $this, $tr, $table, $th, height, width, offset, position, offsets, i, dropzone, cols;
|
||||||
|
|
||||||
if(event.which != 1) return;
|
if(event.which != 1) return;
|
||||||
|
|
||||||
$this = $(this);
|
$this = $(this);
|
||||||
$tr = $this.closest('tr');
|
$tr = $this.closest('tr');
|
||||||
$table = $this.closest('table').css('position','relative');
|
$table = $this.closest('table').css('position','relative');
|
||||||
height = $tr.height();
|
height = $tr.height();
|
||||||
width = $tr.width();
|
width = $tr.width();
|
||||||
|
|
||||||
// before event trigger
|
// before event trigger
|
||||||
before_event = $.Event('before-drag.st');
|
before_event = $.Event('before-drag.st');
|
||||||
$table.trigger(before_event);
|
$table.trigger(before_event);
|
||||||
|
|
||||||
// is event canceled?
|
// is event canceled?
|
||||||
if(before_event.isDefaultPrevented()) return false;
|
if(before_event.isDefaultPrevented()) return false;
|
||||||
|
|
||||||
position = {x:event.pageX, y:event.pageY};
|
position = {x:event.pageX, y:event.pageY};
|
||||||
offset = getOffset($tr.get(0), $table.get(0));
|
offset = getOffset($tr.get(0), $table.get(0));
|
||||||
|
|
||||||
$clone = $tr.attr('target', true).clone(true).appendTo($table);
|
$clone = $tr.attr('target', true).clone(true).appendTo($table);
|
||||||
|
|
||||||
// get colspan
|
// get colspan
|
||||||
cols = ($th=$table.find('thead th')).length;
|
cols = ($th=$table.find('thead th')).length;
|
||||||
$th.filter('[colspan]').attr('colspan', function(idx,attr){ cols += attr - 1; });
|
$th.filter('[colspan]').attr('colspan', function(idx,attr){ cols += attr - 1; });
|
||||||
$holder.find('td').attr('colspan', cols);
|
$holder.find('td').attr('colspan', cols);
|
||||||
|
|
||||||
// get offsets of all list-item elements
|
// get offsets of all list-item elements
|
||||||
offsets = [];
|
offsets = [];
|
||||||
$table.find('tbody>tr:not([target])').each(function() {
|
$table.find('tbody>tr:not([target])').each(function() {
|
||||||
var $this = $(this), o;
|
var $this = $(this), o;
|
||||||
|
|
||||||
o = getOffset(this, $table.get(0));
|
o = getOffset(this, $table.get(0));
|
||||||
offsets.push({top:o.top, bottom:o.top+32, $item:$(this)});
|
offsets.push({top:o.top, bottom:o.top+32, $item:$(this)});
|
||||||
});
|
|
||||||
|
|
||||||
$clone
|
|
||||||
.addClass('draggable')
|
|
||||||
.css({
|
|
||||||
position: 'absolute',
|
|
||||||
opacity : .6,
|
|
||||||
width : width,
|
|
||||||
height : height,
|
|
||||||
left : offset.left,
|
|
||||||
top : offset.top,
|
|
||||||
zIndex : 100
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Set a place holder
|
$clone
|
||||||
$holder
|
.addClass('draggable')
|
||||||
.css({
|
.css({
|
||||||
position:'absolute',
|
position: 'absolute',
|
||||||
opacity : .6,
|
opacity : .6,
|
||||||
width : width,
|
width : width,
|
||||||
height : '10px',
|
height : height,
|
||||||
left : offset.left,
|
left : offset.left,
|
||||||
top : offset.top,
|
top : offset.top,
|
||||||
backgroundColor : '#bbb',
|
zIndex : 100
|
||||||
overflow: 'hidden',
|
});
|
||||||
zIndex : 99
|
|
||||||
})
|
|
||||||
.appendTo($table);
|
|
||||||
|
|
||||||
$tr.css('opacity', .6);
|
// Set a place holder
|
||||||
|
$holder
|
||||||
|
.css({
|
||||||
|
position:'absolute',
|
||||||
|
opacity : .6,
|
||||||
|
width : width,
|
||||||
|
height : '10px',
|
||||||
|
left : offset.left,
|
||||||
|
top : offset.top,
|
||||||
|
backgroundColor : '#bbb',
|
||||||
|
overflow: 'hidden',
|
||||||
|
zIndex : 99
|
||||||
|
})
|
||||||
|
.appendTo($table);
|
||||||
|
|
||||||
$(document)
|
$tr.css('opacity', .6);
|
||||||
.unbind('mousedown.st mouseup.st')
|
|
||||||
.bind('mousemove.st', function(event) {
|
|
||||||
var diff, nTop, item, i, c, o;
|
|
||||||
|
|
||||||
dropzone = null;
|
$(document)
|
||||||
|
.unbind('mousedown.st mouseup.st')
|
||||||
|
.bind('mousemove.st', function(event) {
|
||||||
|
var diff, nTop, item, i, c, o;
|
||||||
|
|
||||||
diff = {x:position.x-event.pageX, y:position.y-event.pageY};
|
dropzone = null;
|
||||||
nTop = offset.top - diff.y;
|
|
||||||
|
|
||||||
for(i=0,c=offsets.length; i < c; i++) {
|
diff = {x:position.x-event.pageX, y:position.y-event.pageY};
|
||||||
o = offsets[i];
|
nTop = offset.top - diff.y;
|
||||||
if( (i && o.top > nTop) || ((i < c-1) && o.bottom < nTop)) continue;
|
|
||||||
|
|
||||||
dropzone = {element:o.$item};
|
for(i=0,c=offsets.length; i < c; i++) {
|
||||||
if(o.top > nTop - 12) {
|
o = offsets[i];
|
||||||
dropzone.state = 'before';
|
if( (i && o.top > nTop) || ((i < c-1) && o.bottom < nTop)) continue;
|
||||||
$holder.css('top', o.top-5);
|
|
||||||
} else {
|
dropzone = {element:o.$item};
|
||||||
dropzone.state = 'after';
|
if(o.top > nTop - 12) {
|
||||||
$holder.css('top', o.bottom-5);
|
dropzone.state = 'before';
|
||||||
|
$holder.css('top', o.top-5);
|
||||||
|
} else {
|
||||||
|
dropzone.state = 'after';
|
||||||
|
$holder.css('top', o.bottom-5);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$clone.css({top:nTop});
|
$clone.css({top:nTop});
|
||||||
})
|
})
|
||||||
.bind('mouseup.st', function(event) {
|
.bind('mouseup.st', function(event) {
|
||||||
var $dropzone;
|
var $dropzone;
|
||||||
|
|
||||||
dragging = false;
|
dragging = false;
|
||||||
|
|
||||||
$(document).unbind('mousemove.st mouseup.st');
|
$(document).unbind('mousemove.st mouseup.st');
|
||||||
$tr.removeAttr('target').css('opacity', '');
|
$tr.removeAttr('target').css('opacity', '');
|
||||||
$clone.remove();
|
$clone.remove();
|
||||||
$holder.remove();
|
$holder.remove();
|
||||||
|
|
||||||
if(!dropzone) return;
|
if(!dropzone) return;
|
||||||
$dropzone = $(dropzone.element);
|
$dropzone = $(dropzone.element);
|
||||||
|
|
||||||
// use the clone for animation
|
// use the clone for animation
|
||||||
$dropzone[dropzone.state]($tr);
|
$dropzone[dropzone.state]($tr);
|
||||||
|
|
||||||
|
$table.trigger('after-drag.st');
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
$('table.sortable').xeSortableTable();
|
||||||
|
|
||||||
$table.trigger('after-drag.st');
|
|
||||||
});
|
|
||||||
})
|
|
||||||
|
|
||||||
function getOffset(elem, offsetParent) {
|
function getOffset(elem, offsetParent) {
|
||||||
var top = 0, left = 0;
|
var top = 0, left = 0;
|
||||||
|
|
@ -662,6 +708,8 @@ $('.multiLangEdit')
|
||||||
.blur(function(){
|
.blur(function(){
|
||||||
clearTimeout(w_timer);
|
clearTimeout(w_timer);
|
||||||
w_timer = null;
|
w_timer = null;
|
||||||
|
|
||||||
|
$(this).closest('.multiLangEdit').focusout();
|
||||||
})
|
})
|
||||||
.end()
|
.end()
|
||||||
.find('a.tgAnchor.editUserLang')
|
.find('a.tgAnchor.editUserLang')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue