12 lines
No EOL
201 B
JavaScript
12 lines
No EOL
201 B
JavaScript
"use strict";
|
|
|
|
module.exports = function(ngApp) {
|
|
|
|
ngApp.factory('imageManagerService', function() {
|
|
return {
|
|
show: false,
|
|
showExternal: false
|
|
};
|
|
});
|
|
|
|
}; |