Skip to content

Commit 1ee52dc

Browse files
authored
Merge pull request #7 from weslley39/master
injetando dependencias novas
2 parents fcaf080 + 8814e2d commit 1ee52dc

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

dist/directive.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* angular-rs-datagrid
33
*
4-
* Version: 1.0.64 - 2018-01-23T18:11:20.493Z
4+
* Version: 1.0.64 - 2018-01-23T18:30:01.637Z
55
* License: MIT
66
*/
77

dist/directive.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* angular-rs-datagrid
33
*
4-
* Version: 1.0.64 - 2018-01-23T18:11:20.557Z
4+
* Version: 1.0.64 - 2018-01-23T18:30:01.673Z
55
* License: MIT
66
*/
77

@@ -865,7 +865,7 @@ angular.module('rs.datagrid', ['ui.utils.masks', 'ui.select'])
865865
}
866866
};
867867
}])
868-
.directive("ngBindHtmlCompile", function ($compile, $sce) {
868+
.directive("ngBindHtmlCompile", ['$compile', '$sce', function ($compile, $sce) {
869869
return {
870870
restrict: "A",
871871
link: function (scope, element, attrs) {
@@ -877,8 +877,7 @@ angular.module('rs.datagrid', ['ui.utils.masks', 'ui.select'])
877877
})
878878
}
879879
};
880-
});;
881-
880+
}]);
882881
'use strict';
883882

884883
angular.module("rs.datagrid")
@@ -980,8 +979,8 @@ $templateCache.put("templates/select-template.html","<select ng-model=\"row[coll
980979
'use strict';
981980

982981
angular.module("rs.datagrid")
983-
.filter('unsafe', function ($sce) {
982+
.filter('unsafe', ['$sce', function ($sce) {
984983
return function (val) {
985984
return $sce.trustAsHtml(val);
986985
};
987-
});
986+
}]);

dist/directive.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/directive.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/directive.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ angular.module('rs.datagrid', ['ui.utils.masks', 'ui.select'])
857857
}
858858
};
859859
}])
860-
.directive("ngBindHtmlCompile", function ($compile, $sce) {
860+
.directive("ngBindHtmlCompile", ['$compile', '$sce', function ($compile, $sce) {
861861
return {
862862
restrict: "A",
863863
link: function (scope, element, attrs) {
@@ -869,4 +869,4 @@ angular.module('rs.datagrid', ['ui.utils.masks', 'ui.select'])
869869
})
870870
}
871871
};
872-
});;
872+
}]);

src/filter/unsafeFilter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict';
22

33
angular.module("rs.datagrid")
4-
.filter('unsafe', function ($sce) {
4+
.filter('unsafe', ['$sce', function ($sce) {
55
return function (val) {
66
return $sce.trustAsHtml(val);
77
};
8-
});
8+
}]);

0 commit comments

Comments
 (0)