itsf_backend 3.0.5 → 3.0.6

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: c9d63d52566409ce45c4d8d9b2a5168e873ea88e
4
- data.tar.gz: f2eda22c050efbbe298b864b230d3224bceefd1b
3
+ metadata.gz: bc986732dbd9aa1a08a48faefb419c602b9f9376
4
+ data.tar.gz: 771f07f03a33bc7cda6b29aab25c0e48de74a7dd
5
5
  SHA512:
6
- metadata.gz: 415f2ce2951dfcda0127e10aabeff557066c441ce594f58be2ed5db6be5e5f2378b30fdf25760879cb8982201e466f0a2824f0c33514667e60abbf478b86838f
7
- data.tar.gz: 56c0fdf98915b8d64199fe58d083c1c1b486496c43544772b16ea338478b7e327c0ecb72a2a5cda1ff3bd78dd74f66f13b6c8d1115827ce828716b61226879ae
6
+ metadata.gz: 23c5a9c82add8276b52f9e4dadaa8073b7efee608fd66e788d3247ad2d153c9453588cd94388d9f25165632c03465ff940c1a5b6766e0e2479d05dd817a5996f
7
+ data.tar.gz: 95364a6db071cbc8cb5b4f34b32a7f14fb36376cb9ba6e5f78e5f1380e4c8dc7bd211cd536f01740687bbdea5fec1336b9b8e3d2539a266da3a36bda84b58120
@@ -10,10 +10,6 @@
10
10
  /[if lt IE 9]
11
11
  = javascript_include_tag "//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js"
12
12
  = stylesheet_link_tag "itsf_backend", :media => "all"
13
- = favicon_link_tag 'apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144'
14
- = favicon_link_tag 'apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114'
15
- = favicon_link_tag 'apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72'
16
- = favicon_link_tag 'apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png'
17
13
  = favicon_link_tag 'itsf/backend/favicon.png', :rel => 'shortcut icon'
18
14
  = javascript_include_tag "itsf_backend"
19
15
 
@@ -1,5 +1,5 @@
1
1
  module Itsf
2
2
  module Backend
3
- VERSION = '3.0.5'
3
+ VERSION = '3.0.6'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itsf_backend
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.5
4
+ version: 3.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Vasquez Angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-04 00:00:00.000000000 Z
11
+ date: 2017-05-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -462,7 +462,6 @@ files:
462
462
  - app/assets/javascripts/itsf/backend/application/autofocus-last.coffee
463
463
  - app/assets/javascripts/itsf/backend/application/awesome-nested-set.coffee
464
464
  - app/assets/javascripts/itsf/backend/application/drop-down-hover.coffee
465
- - app/assets/javascripts/itsf/backend/application/itsf-logo.coffee
466
465
  - app/assets/javascripts/itsf/backend/application/pagination-size.coffee
467
466
  - app/assets/javascripts/itsf/backend/application/table-column-sorting.coffee
468
467
  - app/assets/javascripts/itsf/backend/application/ui_autocomplete.js.coffee
@@ -1,24 +0,0 @@
1
- rotation = ->
2
- $('#navigation-logo > .itsf-logo-38').rotate
3
- angle: 0
4
- animateTo: 360
5
- callback: rotation
6
- return
7
-
8
- $ ->
9
- $('a').click ->
10
- rotation()
11
-
12
- $('a *').click ->
13
- rotation()
14
-
15
- $('input[type="submit"]').click ->
16
- rotation()
17
-
18
- $('#navigation-logo > .itsf-logo-38').rotate bind:
19
- mouseover: ->
20
- $(this).rotate animateTo: 180
21
- return
22
- mouseout: ->
23
- $(this).rotate animateTo: 0
24
- return