Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
i20rzslider
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
jedife
i20rzslider
Commits
6e399803
Commit
6e399803
authored
May 23, 2015
by
Rafal Zajac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix range min handle on mobile
parent
07f9f27b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
bower.json
bower.json
+1
-1
package.json
package.json
+1
-1
rzslider.js
rzslider.js
+2
-2
No files found.
bower.json
View file @
6e399803
{
{
"name"
:
"angularjs-slider"
,
"name"
:
"angularjs-slider"
,
"version"
:
"0.1.1
2
"
,
"version"
:
"0.1.1
3
"
,
"homepage"
:
"https://github.com/rzajac/angularjs-slider"
,
"homepage"
:
"https://github.com/rzajac/angularjs-slider"
,
"authors"
:
[
"authors"
:
[
"Rafal Zajac <rzajac@gmail.com>"
,
"Rafal Zajac <rzajac@gmail.com>"
,
...
...
package.json
View file @
6e399803
{
{
"name"
:
"jusas-angularjs-slider"
,
"name"
:
"jusas-angularjs-slider"
,
"version"
:
"0.1.1
2
"
,
"version"
:
"0.1.1
3
"
,
"description"
:
"AngularJS slider directive with no external dependencies. Mobile friendly!."
,
"description"
:
"AngularJS slider directive with no external dependencies. Mobile friendly!."
,
"main"
:
"rzslider.js"
,
"main"
:
"rzslider.js"
,
"repository"
:
{
"repository"
:
{
...
...
rzslider.js
View file @
6e399803
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
* (c) Rafal Zajac <rzajac@gmail.com>
* (c) Rafal Zajac <rzajac@gmail.com>
* http://github.com/rzajac/angularjs-slider
* http://github.com/rzajac/angularjs-slider
*
*
* Version: v0.1.1
2
* Version: v0.1.1
3
*
*
* Licensed under the MIT license
* Licensed under the MIT license
*/
*/
...
@@ -812,7 +812,7 @@ function throttle(func, wait, options) {
...
@@ -812,7 +812,7 @@ function throttle(func, wait, options) {
this
.
minH
.
on
(
'mousedown'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
minH
,
'rzSliderModel'
));
this
.
minH
.
on
(
'mousedown'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
minH
,
'rzSliderModel'
));
if
(
this
.
range
)
{
this
.
maxH
.
on
(
'mousedown'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
maxH
,
'rzSliderHigh'
))
}
if
(
this
.
range
)
{
this
.
maxH
.
on
(
'mousedown'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
maxH
,
'rzSliderHigh'
))
}
this
.
minH
.
on
(
'touchstart
.rzslider
'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
minH
,
'rzSliderModel'
));
this
.
minH
.
on
(
'touchstart'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
minH
,
'rzSliderModel'
));
if
(
this
.
range
)
{
this
.
maxH
.
on
(
'touchstart'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
maxH
,
'rzSliderHigh'
))
}
if
(
this
.
range
)
{
this
.
maxH
.
on
(
'touchstart'
,
angular
.
bind
(
this
,
this
.
onStart
,
this
.
maxH
,
'rzSliderHigh'
))
}
},
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment