source: extensions/net.sf.basedb.mev/trunk/resources/scripts/mev.jsp @ 1541

Last change on this file since 1541 was 1541, checked in by Nicklas Nordborg, 11 years ago

Fixes #360: Changes related to new GUI in BASE 3.1

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Id
File size: 485 bytes
RevLine 
[666]1<%@ page
[1026]2  pageEncoding="UTF-8"
[666]3  session="false"
4  contentType="text/javascript"
5  import="net.sf.basedb.clients.web.extensions.ExtensionsControl"
6%>
7<%!
[974]8  final String homeUrl = ExtensionsControl.getHomeUrl("net.sf.basedb.mev.launchmev");
[666]9%>
10var MeV = new function()
11{
12  this.launch = function(bioAssaySetId)
13  {
14    var url = '<%=homeUrl%>/launch_mev.jsp';
15    url += '?ID='+getSessionId();
16    url += '&bioassayset_id=' + bioAssaySetId;
[1541]17    Main.openPopup(url, 'LaunchMev', 600, 400);
[666]18  }
[1061]19
[974]20}
21();
Note: See TracBrowser for help on using the repository browser.