Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Stryzhevskyi/rangeSlider
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: attilaorosz/rangeSlider
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Feb 5, 2018

  1. Copy the full SHA
    555328b View commit details
  2. asd

    attilaorosz committed Feb 5, 2018
    Copy the full SHA
    3f3b558 View commit details
  3. SCSS FTW

    attilaorosz committed Feb 5, 2018
    Copy the full SHA
    94dc420 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 src/range-slider.js
  2. 0 src/{range-slider.css → range-slider.scss}
4 changes: 2 additions & 2 deletions src/range-slider.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as dom from './utils/dom';
import * as func from './utils/functions';
import './range-slider.css';
// import './range-slider.css';

const newLineAndTabRegexp = new RegExp('/[\\n\\t]/', 'g');
const MAX_SET_BY_DEFAULT = 100;
@@ -35,7 +35,7 @@ const defaults = {
* @param {HTMLElement} element
* @param {this} options
*/
export default class RangeSlider {
export class RangeSlider {
constructor(element, options) {
let minSetByDefault;
let maxSetByDefault;
File renamed without changes.