We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ec211 commit 52ddab7Copy full SHA for 52ddab7
1 file changed
styles/prosilver/template/ideas.js
@@ -70,9 +70,9 @@
70
71
var $this = $(this),
72
url = $this.attr('href'),
73
- vote = $this.is('.minivoteup') ? 1 : 0;
+ vote = $this.hasClass('minivoteup') ? 1 : 0;
74
75
- if ($this.is('.dead')) {
+ if ($this.hasClass('dead')) {
76
return false;
77
}
78
@@ -97,7 +97,7 @@
97
98
url = $this.attr('href');
99
100
101
102
103
0 commit comments