Browse Source

Merging in latest from upstream (~GUY/fineui:refs/heads/2.0)

* commit 'ff651268ce40aa7b5f3712da3732617693fc42ea':
  add
es6
windy 7 years ago
parent
commit
a927afd77f
  1. 46
      src/core/status.js
  2. 65
      src/core/var.js

46
src/core/status.js

@ -1,46 +0,0 @@
/**
* guy
* 状态常量
*/
_.extend(BI, {
Status: {
SUCCESS: 1,
WRONG: 2,
START: 3,
END: 4,
WAITING: 5,
READY: 6,
RUNNING: 7,
OUTOFBOUNDS: 8,
NULL: -1
},
Direction: {
Top: "top",
Bottom: "bottom",
Left: "left",
Right: "right",
Custom: "custom"
},
Axis: {
Vertical: "vertical",
Horizontal: "horizontal"
},
Selection: {
Default: -999,
None: -1,
Single: 0,
Multi: 1,
All: 2
},
HorizontalAlign: {
Left: "left",
Right: "right",
Center: "center"
},
VerticalAlign: {
Middle: "middle",
Top: "top",
Bottom: "bottom"
}
});

65
src/core/var.js

@ -14,5 +14,68 @@ _.extend(BI, {
emptyStr: "",
emptyFn: function () {
},
empty: null
empty: null,
keyCode: {
BACKSPACE: 8,
COMMA: 188,
DELETE: 46,
DOWN: 40,
END: 35,
ENTER: 13,
ESCAPE: 27,
HOME: 36,
LEFT: 37,
NUMPAD_ADD: 107,
NUMPAD_DECIMAL: 110,
NUMPAD_DIVIDE: 111,
NUMPAD_ENTER: 108,
NUMPAD_MULTIPLY: 106,
NUMPAD_SUBTRACT: 109,
PAGE_DOWN: 34,
PAGE_UP: 33,
PERIOD: 190,
RIGHT: 39,
SPACE: 32,
TAB: 9,
UP: 38
},
Status: {
SUCCESS: 1,
WRONG: 2,
START: 3,
END: 4,
WAITING: 5,
READY: 6,
RUNNING: 7,
OUTOFBOUNDS: 8,
NULL: -1
},
Direction: {
Top: "top",
Bottom: "bottom",
Left: "left",
Right: "right",
Custom: "custom"
},
Axis: {
Vertical: "vertical",
Horizontal: "horizontal"
},
Selection: {
Default: -999,
None: -1,
Single: 0,
Multi: 1,
All: 2
},
HorizontalAlign: {
Left: "left",
Right: "right",
Center: "center"
},
VerticalAlign: {
Middle: "middle",
Top: "top",
Bottom: "bottom"
}
});
Loading…
Cancel
Save