Skip to content
This repository has been archived by the owner on Jul 13, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
fix username for each profile page
Signed-off-by: Christopher Guindon <chris.guindon@eclipse.org>
  • Loading branch information
chrisguindon committed Nov 2, 2016
1 parent 2bf7dc7 commit c8d5606
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions dist/jquery.eclipsefdn-api.js
@@ -1,5 +1,5 @@
/*
* jquery-eclipsefdn-api - v0.0.3
* jquery-eclipsefdn-api - v0.0.4
* Fetch and display data from various Eclipse Foundation APIs.
* https://github.com/EclipseFdn/jquery-eclipsefdn-api
*
Expand Down Expand Up @@ -119,9 +119,11 @@
return false;
}
else{

container.append("<div class=\"alert alert-info\" role=\"alert\">" +
"<label>Copy this URL and paste it into MPC to install this list of favorites in your workspace: </label>" +
"<input class=\"text-full form-control form-text\" type=\"text\" readonly value=\"https://marketplace.eclipse.org/user/webdev/favorites\" width=\"100\">" +
"<input class=\"text-full form-control form-text\" type=\"text\" readonly value=\"https://marketplace.eclipse.org/user/" + self.settings.username +
"/favorites\" width=\"100\">" +
"</div>");
}

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.eclipsefdn-api.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jquery-eclipsefdn-api",
"version": "0.0.3",
"version": "0.0.4",
"description": "Fetch and display data from various Eclipse Foundation APIs.",
"keywords": [
"eclipse foundation api"
Expand Down
4 changes: 3 additions & 1 deletion src/jquery.eclipsefdn-api.js
Expand Up @@ -109,9 +109,11 @@
return false;
}
else{

container.append("<div class=\"alert alert-info\" role=\"alert\">" +
"<label>Copy this URL and paste it into MPC to install this list of favorites in your workspace: </label>" +
"<input class=\"text-full form-control form-text\" type=\"text\" readonly value=\"https://marketplace.eclipse.org/user/webdev/favorites\" width=\"100\">" +
"<input class=\"text-full form-control form-text\" type=\"text\" readonly value=\"https://marketplace.eclipse.org/user/" + self.settings.username +
"/favorites\" width=\"100\">" +
"</div>");
}

Expand Down

0 comments on commit c8d5606

Please sign in to comment.