We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b987cf6 commit 8249ba0Copy full SHA for 8249ba0
gmap3-parent/gmap3/src/main/java/org/wicketstuff/gmap/api/GInfoWindow.java
@@ -101,9 +101,20 @@ public String getJSconstructor()
101
args.set("zIndex", zIndex.toString());
102
}
103
104
+ configureJSconstructor(args);
105
+
106
Constructor constructor = new Constructor("google.maps.InfoWindow").add(args.toJS());
107
return constructor.toJS();
108
109
110
+ /**
111
+ * Allow subclasses to customize InfoWindow initialization.
112
+ *
113
+ * @param args
114
+ */
115
+ protected void configureJSconstructor(ObjectLiteral args)
116
+ {
117
+ }
118
119
/**
120
* Update state from a request to an AJAX target.
0 commit comments