Skip to content

Commit

Permalink
fixing trailing slash
Browse files Browse the repository at this point in the history
Conflicts:
	components/tools/OmeroWeb/omeroweb/webclient/static/webclient/javascript/ome.chgrp.js
  • Loading branch information
atarkowska authored and will-moore committed Sep 3, 2015
1 parent 2034e72 commit f7dbb45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ $(function() {
//...while we load groups
// Need to find which groups we can move selected objects to.
// Object owner must be member of target group.
var url = webindex_url + "load_chgrp_groups?" + OME.get_tree_selection();
var url = webindex_url + "load_chgrp_groups/?" + OME.get_tree_selection();
$.getJSON(url, function(data){
data_owners = data.owners; // save for later
var ownernames = [];
Expand Down Expand Up @@ -96,7 +96,7 @@ $(function() {
// Check if chgrp will attempt to Split a Fileset. Hidden until user hits 'OK'
$group_chooser.hide(); // hide group_chooser while we wait...
var sel = OME.get_tree_selection();
$.get(webindex_url + "fileset_check/chgrp?" + sel, function(html){
$.get(webindex_url + "fileset_check/chgrp/?" + sel, function(html){
if($('div.split_fileset', html).length > 0) {
$(html).appendTo($chgrpform);
$('.chgrp_confirm_dialog .ui-dialog-buttonset button:nth-child(2) span').text("Move All");
Expand Down

0 comments on commit f7dbb45

Please sign in to comment.