Skip to content

Commit

Permalink
Merge pull request #1 from JonasDoebertin/develop
Browse files Browse the repository at this point in the history
Merge 1.0.0-rc.1
  • Loading branch information
JonasDoebertin committed Sep 2, 2015
2 parents 6c1c537 + b98585c commit 5f4daa3
Show file tree
Hide file tree
Showing 17 changed files with 1,499 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/bin export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.jshintrc export-ignore
/.scrutinizer.yml export-ignore
70 changes: 70 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
###############
### Project ###
###############


###############
### Windows ###
###############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk

###########
### OSX ###
###########

.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


#############
### Linux ###
#############

*~

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*
25 changes: 25 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"maxerr" : 50,

"bitwise" : true,
"camelcase" : true,
"curly" : true,
"eqeqeq" : true,
"forin" : true,
"freeze" : true,
"immed" : true,
"indent" : 4,
"quotmark" : true,
"undef" : true,
"unused" : true,
"strict" : true,

"laxbreak" : true,

"browser" : true,
"jquery" : true,

"globals" : {
"console"
}
}
4 changes: 4 additions & 0 deletions .scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
filter:
excluded_paths:
- assets/js/nouislider-* # All noUiSlider dependencies
- assets/js/wnumb-* # All wNumb dependencies
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
List of Range Slider contributors. Updated before every release.

Jonas Döbertin
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## Version 1.0.0-rc.1

* Initial public release
Loading

0 comments on commit 5f4daa3

Please sign in to comment.