Skip to content

Instantly share code, notes, and snippets.

@sohelrana820
Last active June 3, 2017 22:22
Show Gist options
  • Select an option

  • Save sohelrana820/a0eb6e33bd363aa431340891a8e95f64 to your computer and use it in GitHub Desktop.

Select an option

Save sohelrana820/a0eb6e33bd363aa431340891a8e95f64 to your computer and use it in GitHub Desktop.
URL decoder (decodeURIComponent) issue fixed of task manger application.
// Open PROJECT_ROOT/plugins/Apps/webroot/js/src/ProjectsCtrl.js and go to line no 6.
projectSlug = decodeURIComponent(projectSlug);
// Add this line after line 6
// Open PROJECT_ROOT/plugins/Apps/webroot/js/src/FeedsCtrl.js and go to line no 11.
$scope.projectSlug = decodeURIComponent($scope.projectSlug);
// Add this line after line 11
// Open PROJECT_ROOT/plugins/Apps/webroot/js/src/LabelsCtrl.js and go to line no 10.
projectSlug = decodeURIComponent(projectSlug);
// Add this line after line 10
// Open PROJECT_ROOT/plugins/Apps/webroot/js/src/TasksCtrl.js and go to line no 33.
projectSlug = decodeURIComponent(projectSlug);
// Add this line after line 33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment