mirror of https://github.com/abpframework/abp.git
2 changed files with 10 additions and 4 deletions
@ -0,0 +1,4 @@ |
|||
{ |
|||
"singleQuote": true, |
|||
"useTabs": true |
|||
} |
|||
@ -1,7 +1,9 @@ |
|||
var _fileContentModal = new abp.ModalManager(abp.appPath + 'VirtualFileExplorer/FileContentModal'); |
|||
var _fileContentModal = new abp.ModalManager( |
|||
abp.appPath + 'VirtualFileExplorer/FileContentModal' |
|||
); |
|||
|
|||
function showContent(filePath) { |
|||
_fileContentModal.open({ |
|||
filePath: filePath |
|||
}); |
|||
_fileContentModal.open({ |
|||
filePath: filePath, |
|||
}); |
|||
} |
|||
|
|||
Loading…
Reference in new issue