minor fixes...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2017-01-23 20:58:24 +03:00
parent 08492cbf35
commit c0f9342899
2 changed files with 4 additions and 5 deletions

View File

@ -697,8 +697,6 @@ var FileSystemLoaderActions = actions.Actions({
direction = direction || 'below'
console.log('>>>>', direction)
logger = logger || this.logger
logger = logger && logger.push('Load images to ribbon')
@ -1007,7 +1005,7 @@ var FileSystemLoaderUIActions = actions.Actions({
a.doc
: that.getDocTitle(a.action)] =
function(){
return that[a.action].apply(that, a.arguments) }
return that[a.action].apply(that, args) }
// non-actions...
} else {

View File

@ -1709,7 +1709,7 @@ var BrowserPrototype = {
: that.options.actionButton)
.click(function(evt){
evt.stopPropagation()
that.select('"'+ txt +'"')
that.select(res)
that.action()
}))
}
@ -1722,7 +1722,8 @@ var BrowserPrototype = {
: that.options.pushButton)
.click(function(evt){
evt.stopPropagation()
that.push('"'+ txt +'"')
//that.push('"'+ txt +'"')
that.push(res)
}))
}