gufoe / text-translator

extension for gnome-shell
https://extensions.gnome.org/extension/593/text-translator/
58 stars 28 forks source link

regression in Gnome Shell 3.30 (arch linux) #29

Closed ccb23 closed 5 years ago

ccb23 commented 5 years ago

SyntaxError: missing ( after for

XolotlP commented 5 years ago

In language_chooser.js at line 228 the use of for each...in statement is deprecated. Just replace for each(let code in keys) to for (let code of keys) and restart the extension or the shell

ccb23 commented 5 years ago

nice, that works perfectly!