Remove opt_ prefix

This commit is contained in:
Tim Schaub
2022-08-11 17:46:31 -06:00
committed by Tim Schaub
parent dd1edc37ca
commit 99612e7f9a
183 changed files with 1918 additions and 2079 deletions
+3 -3
View File
@@ -66,10 +66,10 @@ const MIN_RATIO = 0.1;
*/
class OverviewMap extends Control {
/**
* @param {Options} [opt_options] OverviewMap options.
* @param {Options} [options] OverviewMap options.
*/
constructor(opt_options) {
const options = opt_options ? opt_options : {};
constructor(options) {
options = options ? options : {};
super({
element: document.createElement('div'),