Last active
June 3, 2017 22:22
-
-
Save sohelrana820/a0eb6e33bd363aa431340891a8e95f64 to your computer and use it in GitHub Desktop.
URL decoder (decodeURIComponent) issue fixed of task manger application.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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