We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When clicking the map, the popup is not anchored to the mouse position.
After fa884d3, the anchored config options is set to false is not valid location is passed to the constructor option.
anchored
false
location
Expected behavior: http://api.geoext.org/1.1/examples/popup-more.html
The text was updated successfully, but these errors were encountered:
@fredj should we just fix up the example by passing in location to the constructor?
diff --git a/examples/popup-more.js b/examples/popup-more.js index 21f2a4f..160ffbf 100644 --- a/examples/popup-more.js +++ b/examples/popup-more.js @@ -23,6 +23,7 @@ Ext.onReady(function() { popup = new GeoExt.Popup({ title: "Popup", width: 200, + location: loc, maximizable: true, collapsible: true, map: mapPanel.map,
Sorry, something went wrong.
No branches or pull requests
When clicking the map, the popup is not anchored to the mouse position.
After fa884d3, the
anchored
config options is set tofalse
is not validlocation
is passed to the constructor option.Expected behavior: http://api.geoext.org/1.1/examples/popup-more.html
The text was updated successfully, but these errors were encountered: