Location do not contains fields
See original GitHub issueThe closure externs seem ok, but elemental does not contain Location fields (href
, protocol
, search
, etc).
https://github.com/google/closure-compiler/blob/master/externs/browser/ie_dom.js#L1252
I think this ie_dom is the one used because it is the unique place where ‘forceReload’ appears.
Current elemental2 Location class:
@JsType(isNative = true, namespace = JsPackage.GLOBAL)
public interface Location {
void assign(String url);
void reload();
void reload(boolean forceReload);
void replace(String url);
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
SQL Query Where Field DOES NOT Contain $x - Stack Overflow
Finds all rows where a does not contain "text" SELECT * FROM x WHERE x.a NOT LIKE '%text%';. If you restrict it so...
Read more >Examples of query criteria - Microsoft Support
Returns records where there is no value in the field. Do not contain null values. Is Not Null. Returns records where the value...
Read more >[GA4] BigQuery Export schema - Analytics Help
Field name Data type Description
app_info RECORD A record of information on the app.
app_info.id STRING The package name or bundle ID of the app.
app_info.firebase_app_id...
Read more >"The Fields collection did not contain an expected geometry ...
It tells me that it doesn't contain a geometry field... even though it clearly does because it tells me what shape it has...
Read more >Places Library | Maps JavaScript API - Google Developers
If the field you want is not returned by Place Search, you can use Place ... A Nearby Search must always include a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@ibaca we are not using ie_dom.js; feel free send us a patch that moves more APIs from ie_dom.js but pls update the documentation similar to other ones in dom_missing_api.js. We will eventually fix them in the Closure and get rid off dom_missing_api.js.
@jDramaix I think the issue is that
Location
only has methodsapply
,reload
andreplace
, and none of thehref
,protocol
,search
, etc. properties: https://developer.mozilla.org/en-US/docs/Web/API/Location