We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cef579c commit e9fde50Copy full SHA for e9fde50
app/scripts/controllers/HomeController.js
@@ -14,8 +14,8 @@
14
});
15
};
16
17
- $scope.importConference = function (newConfYear, newConfName, playlistLink) {
18
- if (newConfYear !== '' && newConfName !== '' && playlistLink !== '') {
+ $scope.importConference = function (newConfName, newConfYear, playlistLink) {
+ if (newConfName !== '' && newConfYear !== '' && playlistLink !== '') {
19
ConferenceService.importConference(newConfYear, newConfName, playlistLink)
20
.then(function (response) {
21
console.log('response', response);
0 commit comments