Browse Source

Settings Management - prettier settings added and js files reformatted

pull/4706/head
Ahmet Çotur 6 years ago
parent
commit
751ee5b779
  1. 4
      modules/setting-management/.prettierrc
  2. 10
      modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Index.js

4
modules/setting-management/.prettierrc

@ -0,0 +1,4 @@
{
"singleQuote": true,
"useTabs": true
}

10
modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Index.js

@ -1,7 +1,7 @@
(function ($) {
var l = abp.localization.getResource('AbpSettingManagement');
var l = abp.localization.getResource('AbpSettingManagement');
$(document).on("AbpSettingSaved", function () {
abp.notify.success(l("SuccessfullySaved"));
});
})(jQuery);
$(document).on('AbpSettingSaved', function () {
abp.notify.success(l('SuccessfullySaved'));
});
})(jQuery);

Loading…
Cancel
Save