Browse Source

Prevent tabs from open in the same tab all the time

Tobias Reich 10 years ago
parent
commit
0f8a409cec
3 changed files with 8 additions and 6 deletions
  1. 7 5
      assets/js/contextMenu.js
  2. 1 1
      assets/js/init.js
  3. 0 0
      assets/min/main.js

+ 7 - 5
assets/js/contextMenu.js

@@ -86,8 +86,9 @@ contextMenu = {
 			function() { settings.setLogin() },
 			function() { settings.setSorting() },
 			function() { settings.setDropboxKey() },
-			function() { window.open(lychee.website, "_newtab"); },
-			function() { window.open("plugins/check/", "_newtab"); },
+			function() { window.open(lychee.website); },
+			function() { window.open("plugins/check/"); },
+			function() { window.open("plugins/displaylog/"); },
 			function() { lychee.logout() }
 		];
 
@@ -98,8 +99,9 @@ contextMenu = {
 			["separator", -1],
 			["<a class='icon-info-sign'></a> About Lychee", 3],
 			["<a class='icon-dashboard'></a> Diagnostics", 4],
+			["<a class='icon-list'></a> Show Log", 5],
 			["separator", -1],
-			["<a class='icon-signout'></a> Sign Out", 5]
+			["<a class='icon-signout'></a> Sign Out", 6]
 		];
 
 		contextMenu.show(items, mouse_x, mouse_y, "right");
@@ -217,7 +219,7 @@ contextMenu = {
 			items;
 
 		contextMenu.fns = [
-			function() { window.open(photo.getDirectLink(),"_newtab") },
+			function() { window.open(photo.getDirectLink()) },
 			function() { photo.getArchive(photoID) }
 		];
 
@@ -276,7 +278,7 @@ contextMenu = {
 			function() { photo.share(photoID, 1) },
 			function() { photo.share(photoID, 2) },
 			function() { photo.share(photoID, 3) },
-			function() { window.open(photo.getDirectLink(),"_newtab") }
+			function() { window.open(photo.getDirectLink()) }
 		];
 
 		link = photo.getViewLink(photoID);

+ 1 - 1
assets/js/init.js

@@ -20,7 +20,7 @@ $(document).ready(function(){
 	$(document).on("mouseup", multiselect.getSelection);
 
 	/* Header */
-	$("#hostedwith").on(event_name, function() { window.open(lychee.website,"_newtab") });
+	$("#hostedwith").on(event_name, function() { window.open(lychee.website) });
 	$("#button_signin").on(event_name, lychee.loginDialog);
 	$("#button_settings").on("click", contextMenu.settings);
 	$("#button_share").on(event_name, function(e) {

File diff suppressed because it is too large
+ 0 - 0
assets/min/main.js


Some files were not shown because too many files changed in this diff