https://github.com/r32/ie-mlog
a simple console.log for IWebBrowser(Embeded IE)
https://github.com/r32/ie-mlog
iwebbrowser
Last synced: 5 months ago
JSON representation
a simple console.log for IWebBrowser(Embeded IE)
- Host: GitHub
- URL: https://github.com/r32/ie-mlog
- Owner: R32
- Created: 2020-02-22T06:40:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-28T03:54:10.000Z (almost 3 years ago)
- Last Synced: 2025-02-12T03:17:19.041Z (over 1 year ago)
- Topics: iwebbrowser
- Language: Haxe
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
mini log
------
[usage](bin/index.html) Press `Shift + F12` to switch On/Off.
```bash
Mini log[ver:{{Macros.gitVersion()}}] for IWebBrowser(Embeded IE)
cls : clear output
$("s") : document.querySelector("s")
$$("s") : document.querySelectorAll("s")
```
### Configuration for haxe projects
installs from git repo
```bash
git clone https://github.com/R32/ie-mlog.git ie-mlog
haxelib dev ie-mlog ie-mlog
```
HTML : put mlog.js before your main.js
```html
```
haxe
```haxe
class Main {
static function main() {
haxe.Log.trace = MLog.log;
trace("hello world!");
}
}
```