Skip to content

Commit

Permalink
Fixed wrong condition.
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed Jan 24, 2016
1 parent 7d7611f commit f964eac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/bs3/module/Buttons.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ define([

// [workaround]
// - IE8~11 can't create range in headless mode
if (agent.isMSIE && agent.isEdge) {
if (agent.isMSIE || agent.isEdge) {
return;
}

Expand Down

0 comments on commit f964eac

Please sign in to comment.