This commit is contained in:
Mislav Marohnić 2017-06-27 16:39:23 +02:00
Родитель d2d5e1a83e
Коммит 339a238be3
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -1,8 +1,8 @@
(function(root, factory) { (function(root, factory) {
if (typeof define === 'function' && define.amd) { if (typeof define === 'function' && define.amd) {
define([], factory); define([], factory)
} else { } else {
root.scanForProblems = factory(); root.scanForProblems = factory()
} }
}(this, function() { }(this, function() {
function scanForProblems(context, logError) { function scanForProblems(context, logError) {
@ -170,4 +170,4 @@
} }
return scanForProblems return scanForProblems
})); }))