Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

AngularJS 1.2.x does not have bind-html-unsafe anymore. This fixes it. #29

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions angular-slider.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,24 +22,22 @@ slider span.bar {
z-index: 0;
-webkit-border-radius: 1em/1em;
border-radius: 1em/1em;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #c0c0c0), color-stop(1, #8d8d8d));
background: -webkit-linear-gradient(top, #c0c0c0 0, #8d8d8d 100%);
background: -moz-linear-gradient(top, #c0c0c0 0, #8d8d8d 100%);
background: -o-linear-gradient(top, #c0c0c0 0, #8d8d8d 100%);
background: -ms-linear-gradient(top, #c0c0c0 0, #8d8d8d 100%);
background: linear-gradient(top, #c0c0c0 0, #8d8d8d 100%);
background: -webkit-linear-gradient(top, #c0c0c0, #8d8d8d);
background: -moz-linear-gradient(top, #c0c0c0, #8d8d8d);
background: -o-linear-gradient(top, #c0c0c0, #8d8d8d);
background: -ms-linear-gradient(top, #c0c0c0, #8d8d8d);
background: linear-gradient(to bottom, #c0c0c0, #8d8d8d);
-webkit-box-shadow: inset 2px 2px 5px;
box-shadow: inset 2px 2px 5px;
}
slider span.bar.selection {
width: 0%;
z-index: 1;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #13b6ff), color-stop(1, #00a8f3));
background: -webkit-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
background: -moz-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
background: -o-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
background: -ms-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
background: linear-gradient(top, #13b6ff 0, #00a8f3 100%);
background: -webkit-linear-gradient(top, #13b6ff, #00a8f3);
background: -moz-linear-gradient(top, #13b6ff, #00a8f3);
background: -o-linear-gradient(top, #13b6ff, #00a8f3);
background: -ms-linear-gradient(top, #13b6ff, #00a8f3);
background: linear-gradient(to bottom, #13b6ff, #00a8f3);
-webkit-box-shadow: none;
box-shadow: none;
}
Expand Down
23 changes: 6 additions & 17 deletions angular-slider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions angular-slider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion angular-slider.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file modified build.sh
100644 → 100755
Empty file.
Loading