mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-12-17 00:31:40 +00:00
revised docs...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
8ead40ded1
commit
b34eff200b
@ -165,15 +165,19 @@ var BrowserPrototype = {
|
|||||||
|
|
||||||
//show_path: true,
|
//show_path: true,
|
||||||
|
|
||||||
|
// Set the path prefix...
|
||||||
|
//
|
||||||
// XXX at this time this is used only for generating paths, need
|
// XXX at this time this is used only for generating paths, need
|
||||||
// to also use this for parsing...
|
// to also use this for parsing...
|
||||||
pathPrefix: '/',
|
pathPrefix: '/',
|
||||||
|
|
||||||
// Enable/disable user selection filtering...
|
// Enable/disable user selection filtering...
|
||||||
|
//
|
||||||
// NOTE: this only affects starting the filter...
|
// NOTE: this only affects starting the filter...
|
||||||
filter: true,
|
filter: true,
|
||||||
|
|
||||||
// Enable/disable full path editing...
|
// Enable/disable full path editing...
|
||||||
|
//
|
||||||
// NOTE: as with .filter above, this only affects .startFullPathEdit(..)
|
// NOTE: as with .filter above, this only affects .startFullPathEdit(..)
|
||||||
fullPathEdit: true,
|
fullPathEdit: true,
|
||||||
|
|
||||||
@ -187,10 +191,20 @@ var BrowserPrototype = {
|
|||||||
// as this will essentially hide/show the whole list.
|
// as this will essentially hide/show the whole list.
|
||||||
traversable: true,
|
traversable: true,
|
||||||
|
|
||||||
|
// If true non-traversable items will be shown...
|
||||||
|
//
|
||||||
|
// NOTE: setting both this and .traversable to false will hide
|
||||||
|
// all elements in the list.
|
||||||
showNonTraversable: true,
|
showNonTraversable: true,
|
||||||
|
|
||||||
|
// If true disabled items will be shown...
|
||||||
|
//
|
||||||
|
// NOTE: this will have an effect only on items disabled via list/make
|
||||||
|
// items with .disabled CSS class set manually will not be
|
||||||
|
// affected...
|
||||||
showDisabled: true,
|
showDisabled: true,
|
||||||
|
|
||||||
// enable/disable disabled drawing...
|
// Enable/disable disabled drawing...
|
||||||
//
|
//
|
||||||
// If false these will disable the corresponding methods.
|
// If false these will disable the corresponding methods.
|
||||||
//
|
//
|
||||||
@ -203,7 +217,18 @@ var BrowserPrototype = {
|
|||||||
// affected...
|
// affected...
|
||||||
toggleDisabledDrawing: true,
|
toggleDisabledDrawing: true,
|
||||||
|
|
||||||
|
// Controls the display of the action button on each list item...
|
||||||
|
//
|
||||||
|
// Possible values:
|
||||||
|
// false - disable the action button
|
||||||
|
// true - show default action button
|
||||||
|
// <text/html> - display <text/html> in action button
|
||||||
actionButton: false,
|
actionButton: false,
|
||||||
|
|
||||||
|
// Controls the display of the push button on each list item...
|
||||||
|
//
|
||||||
|
// This has the same semantics as .actionButton so see that for
|
||||||
|
// more info.
|
||||||
pushButton: false,
|
pushButton: false,
|
||||||
|
|
||||||
// Handle keys that are not bound...
|
// Handle keys that are not bound...
|
||||||
@ -216,6 +241,7 @@ var BrowserPrototype = {
|
|||||||
flat: false,
|
flat: false,
|
||||||
|
|
||||||
// List of events that will not get propagated outside the browser...
|
// List of events that will not get propagated outside the browser...
|
||||||
|
//
|
||||||
// NOTE: these are local events defined on the widget, so it
|
// NOTE: these are local events defined on the widget, so it
|
||||||
// would not be logical to propagate them up the DOM, but if
|
// would not be logical to propagate them up the DOM, but if
|
||||||
// such behavior is desired one could always change the
|
// such behavior is desired one could always change the
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user