Skip to content

Commit 9b71044

Browse files
committed
adding package title
1 parent 894877c commit 9b71044

File tree

21 files changed

+75
-4
lines changed

21 files changed

+75
-4
lines changed

core/failjs/failjs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Equal api to syscall/js but is panic on all method invocation.
1+
// Package failjs is equal api to syscall/js but is panic on all method invocation.
22
//
33
// The usage is to get a tab complession to work inside an IDE
44
// (e.g. Visual Studio Code) without changing to GOOS to js

doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Go Language Web Assembly bindings for DOM, HTML etc
1+
// Go Language Web Assembly bindings for DOM, HTML etc.
22
//
33
// WARNING: The current API is in very early state and should be consider
44
// to be expremental. There is upcommig changed like moving types into

dom/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package dom define DOM nodes and elements types.
2+
//
3+
// Source: DOM Standard (https://dom.spec.whatwg.org/)
4+
package dom

dom/domcore/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Pacakge domcore is shared DOM types
2+
//
3+
// Source: DOM Standard (https://dom.spec.whatwg.org/)
4+
package domcore

fetch/doc.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
// Package fetch standard defines requests, responses, and the process that binds them: fetching.
2-
package fetch
1+
// Package fetch defines requests, responses, and the process that binds them: fetching.
2+
//
3+
// Source: Fetch Standard (https://fetch.spec.whatwg.org/)
4+
// Source: Referrer Policy (https://w3c.github.io/webappsec-referrer-policy/)
5+
package fetch

fileapi/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package fileapi provides an API for representing file objects in web applications, as well as programmatically selecting them and accessing their data.
2+
//
3+
// Source: File API (https://w3c.github.io/FileAPI/)
4+
package fileapi

html/canvas/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package canvas contains HTML canvas related types.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package canvas

html/channel/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package channel is websocket and communication between different pages.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package channel

html/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package html contains HTML DOM elements types.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package html

html/draganddrop/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Pacakge draganddrop is Drag and Drop
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package draganddrop

html/htmlevent/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package htmlevent contains events and callbacks types.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package htmlevent

html/htmlmisc/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Pacakge htmlmisc is the unsorted collection of types.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package htmlmisc

html/media/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package media contains HTML media related types.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package media

html/worker/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package worker makes it possible to run a script operation in a background thread separate from the main execution thread of a web application.
2+
//
3+
// Source: HTML Standard (https://html.spec.whatwg.org/)
4+
package worker

javascript/doc.go

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package javascript contains types related to javascript language.
2+
package javascript

notification/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package notification allows web pages to control the display of system notifications to the end user.
2+
//
3+
// Source: Notifications API Standard (https://notifications.spec.whatwg.org/)
4+
package notification

patch/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package patch is a collection of missing types.
2+
//
3+
// All this types was needed during binding generation
4+
package patch

url/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package url defines URLs, domains, IP addresses, the application/x-www-form-urlencoded format.
2+
//
3+
// Source: URL Standard (https://url.spec.whatwg.org/)
4+
package url

webgl/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package webgl allows rendering using an API that conforms closely to the OpenGL ES 2.0 API.
2+
//
3+
// Source: WebGL Specification (https://www.khronos.org/registry/webgl/specs/latest/1.0/)
4+
package webgl

webgl2/doc.go

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Package webgl2 allows rendering using an API that conforms closely to the OpenGL ES 3.0 API.
2+
//
3+
// Source: WebGL 2.0 Specification (https://www.khronos.org/registry/webgl/specs/latest/2.0/)
4+
package webgl2

webidl/doc.go

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Package webidl contains types defined by WebIDL standard.
2+
package webidl

0 commit comments

Comments
 (0)