consistent usage of arrow syntax instead of anonymous functions

This commit is contained in:
azivner
2017-10-09 18:53:11 -04:00
parent 49460dfb8a
commit ca87ff9215
15 changed files with 76 additions and 95 deletions

View File

@@ -17,7 +17,7 @@ function showNoteHistoryDialog(noteId, noteHistoryId) {
$.ajax({
url: baseApiUrl + 'notes-history/' + noteId,
type: 'GET',
success: function (result) {
success: result => {
globalHistoryItems = result;
for (const row of result) {