diff --git a/tmpl/SearchResults.tmpl b/tmpl/SearchResults.tmpl index c5feea632..d105b4ec4 100644 --- a/tmpl/SearchResults.tmpl +++ b/tmpl/SearchResults.tmpl @@ -26,7 +26,7 @@ const USER_ID = ''; @@ -61,6 +62,7 @@ const USER_ID = ''; + diff --git a/tmpl/User.tmpl b/tmpl/User.tmpl index fad130360..e0384faf3 100644 --- a/tmpl/User.tmpl +++ b/tmpl/User.tmpl @@ -95,7 +95,7 @@ div.deleted { display: none; }
-
+
diff --git a/web/js/pages/search-results.js b/web/js/pages/search-results.js index 2a22fe89c..f04c4cd6e 100644 --- a/web/js/pages/search-results.js +++ b/web/js/pages/search-results.js @@ -35,7 +35,7 @@ $(function () { title: 'Experiments', displayType: 'grid', dataTypes: ['experiment'], - operations: ['share', 'organize', 'favorite', 'delete', 'sendto'] + operations: ['share', 'organize', 'favorite', 'delete', 'sendto', 'info'] }, notebook: { title: 'Notebooks', diff --git a/web/js/pages/user-common.js b/web/js/pages/user-common.js index 6d16b0869..7390f36d6 100644 --- a/web/js/pages/user-common.js +++ b/web/js/pages/user-common.js @@ -397,4 +397,9 @@ function toggle_star(img, id) { $(img).attr({ src: (val == 0 ? "picts/star-hollow.png" : "picts/star-full.png") }); } }); -} \ No newline at end of file +} + + +function open_close_info() { + $( "#info_panel" ).toggle(); +} diff --git a/web/picts/info_icon.png b/web/picts/info_icon.png new file mode 100644 index 000000000..4d114d949 Binary files /dev/null and b/web/picts/info_icon.png differ