hooch 0.6.1 → 0.6.2
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 +4 -4
- data/app/assets/javascripts/hooch.js +1 -1
- data/lib/hooch/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8b128ed1d8877c2da7f3475fb3be03814da5e95d
|
|
4
|
+
data.tar.gz: 334c0c4d06d7fb8507e5d052770a6b50a9baab5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2947e3efbadb510d0b7467ddfca7928f102c4b95178a41b43a0ab3b639749a8a77ab46951ac101b03d0695b6e821980249f6253f29e07cc6d7938da91c32357c
|
|
7
|
+
data.tar.gz: 9085e0b5bf7385275a29521d524865765d438bab4fac81b4eaae1e9fdf89aa2ac281ec5831fa1b4e3a3f8cef96e855f321a4bbc76db966ef282bf8ebb8a56ac8
|
|
@@ -995,7 +995,7 @@ var initHooch = function(){
|
|
|
995
995
|
this.placeholder = new hooch.SortPlaceholder(this.$sort_element.clone().removeAttr('id').css({width: this.width, height: this.height}).data('hooch-sorter-managed',true),this.sorter)
|
|
996
996
|
this.placeholder.css({'visibility': 'hidden'});
|
|
997
997
|
// this.placeholder.css({'background-color': 'pink'});
|
|
998
|
-
$tmp = $('<div style="display: none;" data-hooch-sorter-managed></div>')
|
|
998
|
+
$tmp = $('<div style="display: none;" data-hooch-sorter-managed="true"></div>')
|
|
999
999
|
this.$sort_element.before($tmp)
|
|
1000
1000
|
this.$sort_element
|
|
1001
1001
|
.css({position: 'absolute', top: this.starting_offset.top, left: this.starting_offset.left, width: this.width, height: this.height})
|
data/lib/hooch/version.rb
CHANGED