Slider.js revision 427d76fb4250814666fdd978723d1a89e8c06fc5
0N/A HTML_PARSER : {
0N/A return this._validateNewAxis(v);
0N/A return this._setAxisFn(v);
0N/A return this._validateNewMin(v);
0N/A return this._validateNewMax(v);
0N/A return this._validateNewValue(v);
0N/A return this._setValueFn(v);
0N/A return this._setRailFn(v);
0N/A return this._setThumbFn(v);
0N/A thumbImage : {
0N/A return this._setThumbImageFn(v);
0N/A railHeight : {
0N/A return this._validateNewRailHeight(v);
validator : function (v) {
return this._validateNewRailWidth(v);
value : true,
_key : null,
_tickSize : false,
_railDims : null,
_thumbDims : null,
initializer : function () {
renderUI : function () {
var img;
this.initRail();
this.initThumb();
initRail : function () {
if (!rail) {
initThumb : function () {
if (!thumb) {
this.initThumbImage();
initThumbImage : function () {
if (img) {
bindUI : function () {
this.initThumbDD();
initThumbDD : function () {
this._initBackgroundDD();
_initBackgroundDD : function () {
self = this;
var xy;
this._dragThreshMet = true;
this._fixIEMouseDown();
this.start();
syncUI : function () {
_doSyncUI : function (e) {
this._setRailDims();
this._setThumbDims();
this._setRailOffsetXY();
this._setDDGutter();
this._setConvFactor();
_setRailDims : function () {
_setRailOffsetXY : function () {
_setThumbDims : function () {
xy;
xy;
this._thumbDims = [w,h];
_setDDGutter : function () {
_setConvFactor : function () {
getValue : function () {
_validateNewAxis : function (v) {
return isString(v) &&
_validateNewMin : function (v) {
return isNumber(v);
_validateNewMax : function (v) {
return isNumber(v);
_validateNewValue : function (v) {
return isNumber(v) &&
_validateNewRailHeight : function (v) {
_validateNewRailWidth : function (v) {
_setAxisFn : function (v) {
return v.toLowerCase();
_setValueFn : function (v) {
if (!isNumber(v)) {
return round(v);
_setRailFn : function (v) {
return v ? Y.get(v) : null;
_setThumbFn : function (v) {
return v ? Y.get(v) : null;
_setThumbImageFn : function (v) {
return v ? Y.get(v) ||
_onDDStartDrag : function (e) {
this._setRailOffsetXY();
_onDDDrag : function (e) {
_updateValueFromDD : function (e) {
_onDDEndDrag : function (e) {
_uiSetThumbPosition : function (e) {
_afterValueChange : function (e) {
if (!e.ddEvent) {
_afterMinChange : function (e) {
this._refresh(e);
_afterMaxChange : function (e) {
this._refresh(e);
_afterRailDimChange : function (e) {
this._refresh(e);
_refresh : function (e) {
this.syncUI();
if (!no) {
return !no;