Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
style: fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
xiazeyu committed Jan 1, 2018
1 parent a8a630e commit cb6f7d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions src/cLive2DApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ let headPos = 0.5;
let opacityDefault = 0.7;
let opacityHover = 1;

console.log('cLive2DApp.js is loaded.');

export default () => {
console.log('Finally!~');
/*
Expand Down
6 changes: 3 additions & 3 deletions src/utils/wpPublicPath.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ try{
// console.log('Stage2');
let stack = e.stack || e.sourceURL || e.stacktrace,
rExtractUri = /(?:http|https|file):\/\/.*?\/.+?.js/,
absPath = rExtractUri.exec(stack);
currentScriptPath = absPath[0] || '';
currentScriptPath = currentScriptPath.replace(/[^/\\\\]+$/, '');
absPath = rExtractUri.exec(stack);
currentScriptPath = absPath[0] || '';
currentScriptPath = currentScriptPath.replace(/[^/\\\\]+$/, '');
}

__webpack_public_path__ = currentScriptPath;
Expand Down

0 comments on commit cb6f7d9

Please sign in to comment.