File: venkman.js

package info (click to toggle)
conkeror 1.0.3%2Bgit170123-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,988 kB
  • sloc: ansic: 280; sh: 255; xml: 173; makefile: 69
file content (20 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * (C) Copyright 2010 Dave Kerschner
 *
 * Use, modification, and distribution are subject to the terms specified in the
 * COPYING file.
 *
 * venkman.js
 *
 * glue code between venkman and conkeror
 */

function open_venkman () {
    make_chrome_window("chrome://venkman/content/venkman.xul");
}

interactive("venkman",
    "Open the Venkman Javascript Debugger in a new window.",
    open_venkman);

provide("venkman");