mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = function(ngApp) {
|
||
|
|
||
|
ngApp.factory('imageManagerService', function() {
|
||
|
return {
|
||
|
show: false,
|
||
|
showExternal: false
|
||
|
};
|
||
|
});
|
||
|
|
||
|
};
|