minor tweak...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-01-25 20:19:33 +03:00
parent 21ebcb2b58
commit 7b60f4d326

View File

@ -127,9 +127,8 @@ var BaseBrowserPrototype = {
//
// <item> format:
// {
// item: ...,
// value: ...,
//
// // options...
// ...
// }
//
@ -254,6 +253,7 @@ object.makeConstructor('BaseBrowser',
BaseBrowserPrototype)
//---------------------------------------------------------------------
var BrowserClassPrototype = {
@ -284,7 +284,7 @@ var BrowserPrototype = {
// save the rendered state to .dom
render: function(context, options){
this.dom = object.parent(BrowserPrototype.render, this).call(this, context, options)
this.dom = object.parent(BrowserPrototype.render, this).call(this, ...arguments)
return this.dom
},