Author: alevkovsky
Date: 2009-03-25 10:50:05 -0400 (Wed, 25 Mar 2009)
New Revision: 13177
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageAdditionalInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageEditInfo.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
trunk/test-applications/realworld2/web/src/main/webapp/scripts/realworld.js
Log:
Realworld: add links for popular tags, hide comment for not loged users
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageAdditionalInfo.xhtml
===================================================================
(Binary files differ)
Modified:
trunk/test-applications/realworld2/web/src/main/webapp/includes/image/imageEditInfo.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/layout/template.xhtml
===================================================================
(Binary files differ)
Modified: trunk/test-applications/realworld2/web/src/main/webapp/scripts/realworld.js
===================================================================
--- trunk/test-applications/realworld2/web/src/main/webapp/scripts/realworld.js 2009-03-25
14:33:05 UTC (rev 13176)
+++ trunk/test-applications/realworld2/web/src/main/webapp/scripts/realworld.js 2009-03-25
14:50:05 UTC (rev 13177)
@@ -47,4 +47,17 @@
}else {
showSearch();
}
+}
+
+function selectPopularTag(tag, target) {
+ if(target){
+ var value = target.value;
+ if(value && value.indexOf(tag) != -1){
+ return;
+ }
+ if(value && value.length > 0){
+ target.value += ', ';
+ }
+ target.value += tag;
+ }
}
\ No newline at end of file
Show replies by date