Browse Source

Renamed `name` to `title` and added shortcut for tags and description.

Tobias Reich 11 years ago
parent
commit
032e972ece
3 changed files with 14 additions and 3 deletions
  1. 0 0
      assets/build/main.js
  2. 2 2
      assets/js/build.js
  3. 12 1
      assets/js/init.js

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


+ 2 - 2
assets/js/build.js

@@ -302,7 +302,7 @@ build = {
 
 
 		infos = [
 		infos = [
 			["", "Basics"],
 			["", "Basics"],
-			["Name", photoJSON.title + editTitleHTML],
+			["Title", photoJSON.title + editTitleHTML],
 			["Uploaded", photoJSON.sysdate],
 			["Uploaded", photoJSON.sysdate],
 			["Description", photoJSON.description + editDescriptionHTML],
 			["Description", photoJSON.description + editDescriptionHTML],
 			["", "Image"],
 			["", "Image"],
@@ -414,7 +414,7 @@ build = {
 
 
 		infos = [
 		infos = [
 			["", "Basics"],
 			["", "Basics"],
-			["Name", albumJSON.title + editTitleHTML],
+			["Title", albumJSON.title + editTitleHTML],
 			["Description", albumJSON.description + editDescriptionHTML],
 			["Description", albumJSON.description + editDescriptionHTML],
 			["", "Album"],
 			["", "Album"],
 			["Created", albumJSON.sysdate],
 			["Created", albumJSON.sysdate],

+ 12 - 1
assets/js/init.js

@@ -77,7 +77,18 @@ $(document).ready(function(){
 		.bind(['r', 'ctrl+r'], function(e) {
 		.bind(['r', 'ctrl+r'], function(e) {
 			e.preventDefault();
 			e.preventDefault();
 			if (visible.album()) album.setTitle(album.getID());
 			if (visible.album()) album.setTitle(album.getID());
-			else if (visible.photo()) photo.setTitle(photo.getID());
+			else if (visible.photo()) photo.setTitle([photo.getID()]);
+		})
+		.bind(['d', 'ctrl+d'], function(e) {
+			e.preventDefault();
+			if (visible.photo()) photo.setDescription(photo.getID());
+			else if (visible.album()) album.setDescription(album.getID());
+		})
+		.bind(['t', 'ctrl+t'], function(e) {
+			if (visible.photo()) {
+				e.preventDefault();
+				photo.editTags([photo.getID()]);
+			}
 		})
 		})
 		.bind(['i', 'ctrl+i'], function() {
 		.bind(['i', 'ctrl+i'], function() {
 			if (visible.infobox()) view.infobox.hide();
 			if (visible.infobox()) view.infobox.hide();

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