Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshin54 committed Nov 24, 2015
1 parent 010bdc2 commit 89f1da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/jquery.popline.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
var isTargetOrChild = $.contains($.popline.current.target.get(0), event.target) || $.popline.current.target.get(0) === event.target;
var isBarOrChild = $.contains($.popline.current.bar.get(0), event.target) || $.popline.current.bar.get(0) === event.target;
// TODO disable check multiple popline check
if ((isTargetOrChild || isBarOrChild) && $.popline.utils.selection().text().length > 0 && !$.popline.current.keepSlientWhenBlankSelected()) {
if ((isTargetOrChild || isBarOrChild) && $.popline.utils.selection().text().length > 0 && !$.popline.current.keepSilentWhenBlankSelected()) {
var target= $.popline.current.target, bar = $.popline.current.bar;
if (bar.is(":hidden") || bar.is(":animated")) {
bar.stop(true, true);
Expand Down

0 comments on commit 89f1da3

Please sign in to comment.