mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 18:30:09 +00:00
minor tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
2d822be37d
commit
3a32bb883e
@ -48,8 +48,8 @@
|
|||||||
...need a way to go around this...
|
...need a way to go around this...
|
||||||
*/
|
*/
|
||||||
.blur>* {
|
.blur>* {
|
||||||
-webkit-filter: blur(2px) saturate(0.5);
|
-webkit-filter: blur(2px) saturate(0.3);
|
||||||
filter: blur(2px) saturate(0.5);
|
filter: blur(2px) saturate(0.3);
|
||||||
}
|
}
|
||||||
.blur>.overlay-widget {
|
.blur>.overlay-widget {
|
||||||
-webkit-filter: none;
|
-webkit-filter: none;
|
||||||
|
|||||||
@ -12,6 +12,9 @@
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
/* this will prevent odd blur effects when blurring out specific
|
||||||
|
elements... */
|
||||||
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* show image gid... */
|
/* show image gid... */
|
||||||
|
|||||||
@ -53,11 +53,6 @@ var viewer = require('viewer')
|
|||||||
//var promise = require('promise')
|
//var promise = require('promise')
|
||||||
|
|
||||||
|
|
||||||
// widgets...
|
|
||||||
var browse = require('lib/widget/browse')
|
|
||||||
var overlay = require('lib/widget/overlay')
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*********************************************************************/
|
/*********************************************************************/
|
||||||
|
|
||||||
@ -65,7 +60,12 @@ var overlay = require('lib/widget/overlay')
|
|||||||
// NOTE: setting this here (and only here) to -1 or null will desable
|
// NOTE: setting this here (and only here) to -1 or null will desable
|
||||||
// key dropping...
|
// key dropping...
|
||||||
// NOTE: keeping this disabled is recommended for development...
|
// NOTE: keeping this disabled is recommended for development...
|
||||||
module.MAX_KEY_REPEAT_RATE = 0 //100
|
// NOTE: setting this to 0 will only allow a single keypress per
|
||||||
|
// execution frame...
|
||||||
|
// XXX yes there should be only one execution frame per event
|
||||||
|
// triggered but this actually improves things, thus the issue
|
||||||
|
// needs more investigation...
|
||||||
|
module.MAX_KEY_REPEAT_RATE = 0
|
||||||
|
|
||||||
// XXX add this to the global doc...
|
// XXX add this to the global doc...
|
||||||
module.GLOBAL_KEYBOARD = {
|
module.GLOBAL_KEYBOARD = {
|
||||||
@ -230,6 +230,7 @@ module.GLOBAL_KEYBOARD = {
|
|||||||
ctrl: 'toggleTheme!',
|
ctrl: 'toggleTheme!',
|
||||||
alt: 'browseActions: "/Bookmark/"',
|
alt: 'browseActions: "/Bookmark/"',
|
||||||
},
|
},
|
||||||
|
C: 'browseActions: "/Crop/"',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -257,7 +257,7 @@ actions.Actions({
|
|||||||
// adding new items to the resulting structure...
|
// adding new items to the resulting structure...
|
||||||
// XXX is this the correct way to go???
|
// XXX is this the correct way to go???
|
||||||
// ...can we save simple attribute values???
|
// ...can we save simple attribute values???
|
||||||
json: ['File/Dump state as JSOM object',
|
json: ['File/Dump state as JSON object',
|
||||||
'This will collect JSON data from every available attribute '
|
'This will collect JSON data from every available attribute '
|
||||||
+'supporting the .dumpJSON() method.',
|
+'supporting the .dumpJSON() method.',
|
||||||
function(){
|
function(){
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user