adds a production, minified version
This commit is contained in:
@@ -6,11 +6,11 @@ services.factory('albumService',['$http','$log','$q', function($http,$log,$q) {
|
||||
var removeSerie = /^\(.*\) .*$/;
|
||||
|
||||
function cleanupName(name) {
|
||||
matches = name.match(determinantRegexp);
|
||||
if (matches == null) {
|
||||
var matchesStr = name.match(determinantRegexp);
|
||||
if (matchesStr == null) {
|
||||
return name;
|
||||
}
|
||||
return matches[2] + ' ' + matches[1];
|
||||
return matchesStr[2] + ' ' + matchesStr[1];
|
||||
}
|
||||
|
||||
function cleanupFields(album) {
|
||||
|
||||
Reference in New Issue
Block a user