Skip to content

Commit

Permalink
Fix missing concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSeeler committed Aug 25, 2015
1 parent deae086 commit 2530c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion angular-bootstrap-checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ angular.module("ui.checkbox", []).directive("checkbox", function() {
restrict: "E",
replace: "true",
template: "<button type=\"button\" ng-style=\"stylebtn\" class=\"btn btn-white\" ng-class=\"{'btn-xs': size==='default', 'btn-sm': size==='large', 'btn-lg': size==='largest', 'checked': checked===true}\">" +
"<span ng-style=\"styleicon\" class=\"fa\" ng-class=\"{'fa-check': checked===true}\"></span>"
"<span ng-style=\"styleicon\" class=\"fa\" ng-class=\"{'fa-check': checked===true}\"></span>" +
"</button>",
link: function(scope, elem, attrs, modelCtrl) {
scope.size = "default";
Expand Down

0 comments on commit 2530c96

Please sign in to comment.