Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tmpl/SearchResults.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const USER_ID = '<TMPL_VAR NAME="USER_ID">';
<div id="bottom-panel" class="hidden" style="width:100%;">
<div style="float:right;width:225px;">
<span id="show_panel_button" onClick="show_top_panel();" class="link ui-icon ui-icon-plus hidden coge-border" style="float:right;margin-right:5px;"></span>

<div id="info_panel" class="small panel coge-border-top" style="overflow:none;margin-left:10px;margin-top:29px;color:gray;">
</div>
</div>
Expand All @@ -42,6 +42,7 @@ const USER_ID = '<TMPL_VAR NAME="USER_ID">';
<li><span data-type="experiment"><img src="picts/testtube-icon.png" width="15" height="15"/> Experiments </span></li>
<li><span data-type="notebook"><img src="picts/notebook-icon.png" width="15" height="15"/> Notebooks </span></li>
<li><span data-type="group"><img src="picts/group-icon.png" width="15" height="15"/> User Groups </span></li>
<li><span data-type="group"><img src="picts/info-icon.png" width="15" height="15"/> Info </span></li>
</ul>
</div>
</div>
Expand All @@ -61,6 +62,7 @@ const USER_ID = '<TMPL_VAR NAME="USER_ID">';
</TMPL_IF>
<span id="send_button" onClick="send_menu();" class="sendto coge-icon coge-disabled glyphicon glyphicon-arrow-right item-button invisible" style="margin-right:5px;" title="Send Selected Items to ..."></span>
<input id="search_input" type="search" placeholder="Filter" size="25" class="coge-border" style="float:right;margin-right:15px;vertical-align:top;" />
<input id="i_button" onClick="open_close_info();" class="info coge-icon coge-disabled glyphicon glyphicon-info-sign item-button invisible" style="margin-right:5px;" title="Hide/View Info"></span>
<span id="refresh_label" class="xsmall hidden info" style="float:right;padding-right:25px;">Refreshing...</span>
</div>
<div class="grid hidden noselect coge-border-top" style="overflow:auto;border-bottom:none !important;"></div>
Expand Down
2 changes: 1 addition & 1 deletion tmpl/User.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ div.deleted { display: none; }
</div>

<div id="contents_panel" class="small panel">
<div class="noselect" style="height:24px">
<div class="noselect" style="display: block; overflow: auto;">
<span id="contents_title" style="float:left;min-width:130px;font-weight:bold;margin-right:20px;"></span>
<span id="add_button" onClick="add_dialog();" class="add coge-icon glyphicon glyphicon-plus item-button invisible" style="margin-right:5px;" title="Create New Item"></span>
<span id="share_button" onClick="share_dialog();" class="share coge-icon coge-disabled glyphicon glyphicon-user item-button invisible" style="margin-right:5px;" title="Share Selected Items"></span>
Expand Down
2 changes: 1 addition & 1 deletion web/js/pages/search-results.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
7 changes: 6 additions & 1 deletion web/js/pages/user-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,9 @@ function toggle_star(img, id) {
$(img).attr({ src: (val == 0 ? "picts/star-hollow.png" : "picts/star-full.png") });
}
});
}
}


function open_close_info() {
$( "#info_panel" ).toggle();
}
Binary file added web/picts/info_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.