Skip to content

Commit

Permalink
fix jscs (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedik authored Dec 19, 2021
1 parent c51c171 commit 1c8e89f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion build/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// Vue
"plugin:vue/vue3-recommended"
],
"parser": "vue-eslint-parser",
"parserOptions": {
"sourceType": "module"
},
Expand Down
4 changes: 1 addition & 3 deletions build/media_source/plg_system_jooa11y/js/jooa11y.es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ if (!Joomla) {

const stringPrefix = 'PLG_SYSTEM_JOOA11Y_';

Lang.translate = string => {
return Joomla.Text._(stringPrefix + string, string);
};
Lang.translate = (string) => Joomla.Text._(stringPrefix + string, string);

const options = Joomla.getOptions('jooa11yOptions');

Expand Down

0 comments on commit 1c8e89f

Please sign in to comment.