Skip to content

Commit 94326a9

Browse files
committed
Merge pull request #84 from levani/patch-1
Added missing dash between prefix and class name
2 parents 3d6fc69 + 27e6809 commit 94326a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/jquery.selectric.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
originalWidth = $original.width();
126126

127127
$.each(postfixes, function(i, currClass) {
128-
var c = customClass.prefix + currClass;
128+
var c = customClass.prefix + '-' + currClass;
129129
_this.classes[currClass.toLowerCase()] = customClass.camelCase ? c : _utils.toDash(c);
130130
});
131131

@@ -535,4 +535,4 @@
535535
};
536536

537537
$.fn[pluginName].hooks = hooks;
538-
}(jQuery));
538+
}(jQuery));

0 commit comments

Comments
 (0)