Skip to content

Commit e0adcf6

Browse files
committed
Merge pull request angular-ui#133 from alexilyaev/patch-1
Don't use 'use strict'; on the global scope
2 parents 35974cf + 881f8c7 commit e0adcf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sortable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
'use strict';
2-
31
/*
42
jQuery UI Sortable plugin wrapper
53
@@ -10,6 +8,8 @@ angular.module('ui.sortable', [])
108
.directive('uiSortable', [
119
'uiSortableConfig', '$timeout', '$log',
1210
function(uiSortableConfig, $timeout, $log) {
11+
'use strict';
12+
1313
return {
1414
require: '?ngModel',
1515
link: function(scope, element, attrs, ngModel) {

0 commit comments

Comments
 (0)