|
@@ -189,9 +189,10 @@ require([
|
189
|
189
|
var tab_id = $(this).attr('data-itp-tab-id');
|
190
|
190
|
var li = $(this).closest('li');
|
191
|
191
|
var tabSize = $('#ITP_HEADER .itp_tab_list li').size() - 1;
|
192
|
|
- var curIdx = li.index();
|
|
192
|
+ var curIdx = li.index();
|
193
|
193
|
$('#ITP_TAB_' + tab_id).remove();
|
194
|
194
|
$(this).closest('li').remove();
|
|
195
|
+
|
195
|
196
|
if(curIdx === tabSize) {
|
196
|
197
|
$('#ITP_HEADER .itp_tab_list li').removeClass('active');
|
197
|
198
|
$('#ITP_CONTAINER .itp_contents .itp_sec').removeClass('active');
|
|
@@ -199,8 +200,13 @@ require([
|
199
|
200
|
// $('#ITP_CONTAINER .itp_contents .itp_sec:first-child').addClass('active');
|
200
|
201
|
$('#ITP_HEADER .itp_tab_list li').eq(curIdx - 1).addClass('active');
|
201
|
202
|
$('#ITP_CONTAINER .itp_contents .itp_sec').eq(curIdx - 1).addClass('active');
|
202
|
|
- itp_fn_fire_window_resize();
|
|
203
|
+
|
|
204
|
+ } else {
|
|
205
|
+ $('#ITP_HEADER .itp_tab_list li').eq(curIdx).addClass('active');
|
|
206
|
+ $('#ITP_CONTAINER .itp_contents .itp_sec').eq(curIdx).addClass('active');
|
|
207
|
+
|
203
|
208
|
}
|
|
209
|
+ itp_fn_fire_window_resize();
|
204
|
210
|
|
205
|
211
|
return false;
|
206
|
212
|
});
|