mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-28 18:00:09 +00:00
minor tweaks...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
5406c071a9
commit
2a5e490117
@ -1995,17 +1995,22 @@ progress:not(value)::-webkit-progress-bar {
|
||||
}
|
||||
.progress-bar .close {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
right: 7px;
|
||||
width: 20px;
|
||||
font-size: 20px;
|
||||
text-align: center;
|
||||
|
||||
opacity: 0.3;
|
||||
cursor: pointer;
|
||||
}
|
||||
.progress-bar:hover .close {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
right: 10px;
|
||||
}
|
||||
.progress-bar .close:hover {
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
opacity: 1;
|
||||
color: red;
|
||||
cursor: pointer;
|
||||
}
|
||||
.progress-bar progress {
|
||||
display: block;
|
||||
|
||||
@ -2678,14 +2678,14 @@ function(title, func){
|
||||
action = Queued(function(items, ...args){
|
||||
var that = this
|
||||
// sync start...
|
||||
if(arguments[0] == 'sync'){
|
||||
if(arguments[0] == 'sync' || arguments[0] == 'async'){
|
||||
var [sync, items, ...args] = arguments }
|
||||
|
||||
// sync mode -- run action outside of queue...
|
||||
// NOTE: running the queue in sync mode is not practical as
|
||||
// the results may depend on queue configuration and
|
||||
// size...
|
||||
if(sync){
|
||||
if(sync == 'sync'){
|
||||
// pre-process args...
|
||||
arg_handler
|
||||
&& ([items, ...args] =
|
||||
|
||||
@ -115,7 +115,7 @@ var MetadataReaderActions = actions.Actions({
|
||||
|
||||
NOTE: also see: .cacheMetadata(..)
|
||||
`,
|
||||
core.queueHandler('Read image metadata',
|
||||
core.sessionQueueHandler('Read image metadata',
|
||||
{quiet: true},
|
||||
function(queue, image, force){
|
||||
return [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user