Преглед на файлове

Fixed close tab switch to first tab issue

Toby Chui преди 3 години
родител
ревизия
66ae56722d
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      web/NotepadA/index.html

+ 1 - 1
web/NotepadA/index.html

@@ -1039,7 +1039,7 @@ function removeTab(tabid){
 		$(targetTab).remove();
 		//I have no idea why this only works with a delay... but just don't change this.
 		setTimeout(function(){
-			var focusTarget = $(".fileTab").first().attr("tabid");
+			var focusTarget = $(".fileTab").last().attr("tabid");
 			focusTab(focusTarget); }, 100);
 	}else{
 		$(targetTab).remove();