Created
September 29, 2017 22:39
-
-
Save shaun-sweet/8dabb58b007da3fd0dc6298f866c6593 to your computer and use it in GitHub Desktop.
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
function refreshWeeks (sourceScheduleId, targetScheduleId) { | |
if (targetScheduleId !== sourceScheduleId) { | |
RefreshService.refresh({ | |
weekId: sourceScheduleId, | |
}); | |
} | |
RefreshService.refresh({ | |
weekId: targetScheduleId, | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment