audit_rails 2.0.7 → 2.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39d26c28cc9a466e59e77d624628a911a7064063
4
- data.tar.gz: eae8038b2bfbbf796fe75c47fd9fa2b4bd9c7af9
3
+ metadata.gz: 183ef3647feb449c859d5207d5fb6b1f6e977eeb
4
+ data.tar.gz: 02d1c9d9be40195cf858b0cedbe3752f2b4d8f45
5
5
  SHA512:
6
- metadata.gz: 78cf257d801f74db08b7a1833fd77eca4e7371042468625660f9523c0bccf157ea581a85056dd38d95a1931678a0acf99087725c627a07ef90bcfee2f996816f
7
- data.tar.gz: 690a85f3e47406218ebea2195f41c553bbde89303cad2d84febf0d2dd0b844682c54bbe316fb7df5ab983f6b70cd4f29564d5888f2daa405d0e2158f8613a942
6
+ metadata.gz: 42bb47e186b5cc9197f4019b17e8b0ed35f809a9db850047537755a01caa13df590a8cd7b8248846150b4b39754f1db71dabeb1dea6bb3c2f5175efdef5bfa91
7
+ data.tar.gz: 8b4e1b165c038de0ba51c4886fb8ea6b464a4835750761db16552d60c6d030182a8f10e44a539b85e966ee0987086ef7b692400ca8c4a719fe9d46e7e6572e92
@@ -39,33 +39,33 @@ $(document).ready(function(){
39
39
  });
40
40
 
41
41
  $('#user-clicks-zoomin').on('click', function(){
42
- $('#user-clicks').show();
42
+ $('#user-clicks').fadeIn( "slow", function() {});
43
43
  });
44
44
  $('#page-views-zoomin').on('click', function(){
45
- $('#page-views').show();
45
+ $('#page-views').fadeIn( "slow", function() {});
46
46
  });
47
47
  $('#hourly-views-zoomin').on('click', function(){
48
- $('#hourly-views').show();
48
+ $('#hourly-views').fadeIn( "slow", function() {});
49
49
  });
50
50
  $('#user-pages-zoomin').on('click', function(){
51
- $('#user-pages').show();
52
- $('per-user-by-pages-bar').show();
53
- $('per-user-by-pages-pie').show();
51
+ $('#user-pages').fadeIn( "slow", function() {});
52
+ $('per-user-by-pages-bar').fadeIn( "slow", function() {});
53
+ $('per-user-by-pages-pie').fadeIn( "slow", function() {});
54
54
  });
55
55
 
56
56
  $('#user-clicks-zoomout').on('click', function(){
57
- $('#user-clicks').hide();
57
+ $('#user-clicks').fadeOut( "slow", function() {});
58
58
  });
59
59
  $('#page-views-zoomout').on('click', function(){
60
- $('#page-views').hide();
60
+ $('#page-views').fadeOut( "slow", function() {});
61
61
  });
62
62
  $('#hourly-views-zoomout').on('click', function(){
63
- $('#hourly-views').hide();
63
+ $('#hourly-views').fadeOut( "slow", function() {});
64
64
  });
65
65
  $('#user-pages-zoomout').on('click', function(){
66
- $('#user-pages').hide();
67
- $('per-user-by-pages-bar').hide();
68
- $('per-user-by-pages-pie').hide();
66
+ $('#user-pages').fadeOut( "slow", function() {});
67
+ $('per-user-by-pages-bar').fadeOut( "slow", function() {});
68
+ $('per-user-by-pages-pie').fadeOut( "slow", function() {});
69
69
  });
70
70
  });
71
71
 
@@ -214,4 +214,12 @@ input.download-report:hover{
214
214
  }
215
215
  #user-pages{
216
216
  display: none;
217
- }
217
+ }
218
+
219
+ /* over-riding Sleek Charts CSS*/
220
+ .bar {
221
+ fill: #66AFCE;
222
+ }
223
+ .bar:hover {
224
+ fill: #e98e4e ;
225
+ }
@@ -1,3 +1,3 @@
1
1
  module AuditRails
2
- VERSION = "2.0.7"
2
+ VERSION = "2.0.8"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: audit_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.7
4
+ version: 2.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gourav Tiwari