🌐 AI搜索 & 代理 主页
Skip to content
Prev Previous commit
#15262: Correct logic for cover tests.
  • Loading branch information
tkiseleva committed Dec 18, 2020
commit c234a2b24f10d69f97c46574ad8518d22b1f4182
2 changes: 1 addition & 1 deletion ui/widgets/slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ return $.widget( "ui.slider", $.ui.mouse, {
max = parseFloat( max.toFixed( this._precision() ) );
var optionMax = parseFloat( this.options.max.toFixed( this._precision() ) );

if ( this.options.includeMax ) {
if ( this.options.includeMax && this.options.includeMax === true) {
if ( max < optionMax ) {

// If max is not divisible by step and max from options
Expand Down