Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 33ea4e0

Browse files
committed
build
1 parent 6add153 commit 33ea4e0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dist/main.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,10 @@ $templateCache.put("views/selected-button.directive.html","<button ng-class=\"{\
130130
dir = function() {
131131
var link;
132132
link = function(scope, element, attrs) {
133-
return $(element).bind('click', function() {
134-
return $(element).focus();
133+
var $element;
134+
$element = $(element[0]);
135+
return $element.bind('click', function() {
136+
return $element.focus();
135137
});
136138
};
137139
return {

0 commit comments

Comments
 (0)