xlsx test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modified Three.js OrbitControls(https://threejs.org/examples/js/controls/OrbitControls.js) to use in Threejs Editor. | |
// OrbitControls cannot be used in threejs editor because THREE object is sealed or extensibility prevented. | |
// MyTHREE is used instead of THREE. | |
/* | |
Usage: Load it with following | |
function loadOrbitControls() | |
{ | |
var orbitcontrols = document.createElement('script'); | |
var controls = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default class MyWeb extends Component { | |
mainUrl = "https://facebook.github.io/"; | |
state = { | |
url: this.mainUrl, | |
}; | |
render() { | |
return [ | |
<WebView | |
key="comp1" |
- For merging json file there are lot of packages like "merge-jsons-webpack-plugin" but they restrict the file extension to json.
- But, datatables languages files have .lang extension(symbolic links might be considered but it might be cumbersome or useless effort)
- So, i decided to write it straight forward and come up with this code.
- I take advantage of CopyWebpackPlugin and did not write an extra webpack plugin.