mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Merge pull request #3321 from node-red/fix-prev-tab-action
Fix findPreviousVisibleTab action
This commit is contained in:
		| @@ -578,7 +578,7 @@ RED.tabs = (function() { | ||||
|  | ||||
|         function findPreviousVisibleTab(li) { | ||||
|             if (!li) { | ||||
|                 li = ul.find("li.active").parent(); | ||||
|                 li = ul.find("li.active"); | ||||
|             } | ||||
|             var previous = li.prev(); | ||||
|             while(previous.length > 0 && previous.hasClass("hide-tab")) { | ||||
| @@ -588,9 +588,9 @@ RED.tabs = (function() { | ||||
|         } | ||||
|         function findNextVisibleTab(li) { | ||||
|             if (!li) { | ||||
|                 li = ul.find("li.active").parent(); | ||||
|                 li = ul.find("li.active"); | ||||
|             } | ||||
|             var next = ul.find("li.active").next(); | ||||
|             var next = li.next(); | ||||
|             while(next.length > 0 && next.hasClass("hide-tab")) { | ||||
|                 next = next.next(); | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user