Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 2.1.0 #15

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
.bundle
Gemfile.lock
pkg/*
.DS_Store
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ Add `introjs-rails` to your Gemfile and run `bundle install`:

Add the following to your `app/assets/javascripts/application.js`:

//= require introjs
//= require intro

### Include introjs-rails stylesheet assets

@@ -42,4 +42,4 @@ If you want to contribute, please:
Copyright (c) 2013 Pablo Fernandez. See [LICENSE][1] for details.

[0]: https://github.com/usablica/intro.js
[1]: https://github.com/heelhook/intro.js-rails/blob/master/LICENSE
[1]: https://github.com/heelhook/intro.js-rails/blob/master/LICENSE
1,720 changes: 1,720 additions & 0 deletions app/assets/javascripts/intro.js

Large diffs are not rendered by default.

43 changes: 43 additions & 0 deletions app/assets/javascripts/intro.min.js

Large diffs are not rendered by default.

33 changes: 0 additions & 33 deletions app/assets/javascripts/introjs.js

This file was deleted.

22 changes: 22 additions & 0 deletions app/assets/stylesheets/introjs-rtl.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.introjs-tooltipbuttons {
text-align: left;
}
.introjs-skipbutton {
margin-left: 5px;
}
.introjs-tooltip {
direction: rtl;
}
.introjs-prevbutton {
border: 1px solid #d4d4d4;
border-left: none;
-webkit-border-radius: 0 0.2em 0.2em 0;
-moz-border-radius: 0 0.2em 0.2em 0;
border-radius: 0 0.2em 0.2em 0;
}
.introjs-nextbutton {
border: 1px solid #d4d4d4;
-webkit-border-radius: 0.2em 0 0 0.2em;
-moz-border-radius: 0.2em 0 0 0.2em;
border-radius: 0.2em 0 0 0.2em;
}
1 change: 1 addition & 0 deletions app/assets/stylesheets/introjs-rtl.min.css
454 changes: 453 additions & 1 deletion app/assets/stylesheets/introjs.css
100644 → 100755

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/assets/stylesheets/introjs.min.css
2 changes: 1 addition & 1 deletion lib/introjs-rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Introjs
module Rails
VERSION = "1.0.0"
VERSION = "2.1.0"
end
end