Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: KSP-SpaceDock/OpenDock
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 77b61b5140d4
Choose a base ref
...
head repository: KSP-SpaceDock/OpenDock
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd757738bd40
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 16, 2018

  1. Copy the full SHA
    82c9010 View commit details
  2. Merge pull request #5 from HebaruSan/patch-1

    Add missing period (member operator)
    StollD authored Feb 16, 2018
    Copy the full SHA
    dd75773 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 scripts/index.js
4 changes: 2 additions & 2 deletions scripts/index.js
Original file line number Diff line number Diff line change
@@ -34,7 +34,7 @@ function updateIndex() {
when(getJSON(backend + '/api/users/current'),
getJSON(backend + '/api/mods/' + gameshort),
getJSON(backend + '/api/users'),
getJSON(backend + '/api/browse/' + gameshort))
getJSON(backend + '/api/browse/' + gameshort)).
done(function(currentUser, mods, users, browse) {
app.$data.currentUser = currentUser.error ? null : currentUser.data;
app.$data.mods = mods;
@@ -48,4 +48,4 @@ function updateIndex() {
};
app.$data.window = window;
});
}
}