Config
Table of Contents

Enum

O.DragEffect

NONENo effect when drag released.
COPYData will be copied to target.
MOVEData will be moved to target.
LINKData will be linked to by target.
ALLData may be copied, moved or linked by target.
DEFAULTThe default browser action when released.
"use strict";

O.DragEffect = {
 NONE: 0,
 COPY: 1,
 MOVE: 2,
 LINK: 4,
 ALL: 1|2|4,
 DEFAULT: 8,

Property

O.DragEffect.effectToString

  • String[]

Maps bit mask effect to string

effectToString:  [
   'none',
   'copy',
   'move',
   'copyMove',
   'link',
   'copyLink',
   'linkMove',
   'all',
   ''
 ]
};
Animation
Application
Core
DataStore
DOM
DragDrop
Foundation
IO
Localisation
Selection
Parser
TimeZones
Storage
Touch
CollectionViews
UA
ContainerViews
ControlViews
PanelViews
View