Skip to content

Commit

Permalink
minor: remove extra slash
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdias committed May 29, 2012
1 parent 5455618 commit ff8b6fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webroot/js/index.js
Expand Up @@ -24,7 +24,7 @@ $(document).ready(function() {
if ( $(this).val() != '' ) {
$.ajax({
type: "POST",
url: firstLevel+"/report_manager/reports/ajaxGetOneToManyOptions",
url: firstLevel+"report_manager/reports/ajaxGetOneToManyOptions",
dataType: 'text',
data: "model=" + $(this).val(),
success: function(oneToManyOptions){
Expand All @@ -42,7 +42,7 @@ $(document).ready(function() {
if ( report != '' && confirm('Are you sure you want to delete '+report+'?')) {
$.ajax({
type: "POST",
url: firstLevel+"/report_manager/reports/deleteReport/"+report,
url: firstLevel+"report_manager/reports/deleteReport/"+report,
dataType: 'text',
success: function(reportList){
$('#ReportManagerSavedReportOptionContainer').html(reportList);
Expand Down

0 comments on commit ff8b6fb

Please sign in to comment.