Fix code style formatting
- Fix code style formatting to be <= 80 lines - Add default parameter for urlOptions to loadUrl, reload and reloadIgnoringCache functions to be compatible with old API.
This commit is contained in:
parent
e6830e9ac8
commit
747698fe9b
2 changed files with 10 additions and 2 deletions
|
@ -26,6 +26,13 @@ module.exports.wrap = (webContents) ->
|
|||
webContents.getId = -> "#{@getProcessId()}-#{@getRoutingId()}"
|
||||
webContents.equal = (other) -> @getId() is other.getId()
|
||||
|
||||
# Provide a default parameter for urlOptions to be compatible with the old
|
||||
# API.
|
||||
webContents::loadUrl = (url, urlOptions={}) -> loadUrl url, urlOptions
|
||||
webContents::reload = (urlOptions={}) -> reload(urlOptions)
|
||||
webContents::reloadIgnoringCache = (urlOptions={}) ->
|
||||
reloadIgnoringCache(urlOptions)
|
||||
|
||||
# Translate |disposition| to string for 'new-window' event.
|
||||
webContents.on '-new-window', (args..., disposition) ->
|
||||
disposition =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue