Skip to content
This repository was archived by the owner on Jul 9, 2020. It is now read-only.

Commit a0f0991

Browse files
committed
Make minification safe
1 parent b59737b commit a0f0991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

angular-slugify.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@
292292
};
293293
}]);
294294

295-
mod.filter("slugify", function(Slug) {
295+
mod.filter("slugify", ["Slug", function(Slug) {
296296
return function(input) {
297297
return Slug.slugify(input);
298298
};
299-
});
299+
}]);
300300
})();

0 commit comments

Comments
 (0)