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

jankuca/dom-feedback

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

DOM Feedback

DOM Feedback aims to be a little tool similar to the Google Feedback tool (mostly noticed on Google+) you can implement in your own web app.

Currently, it can only select/highlight DOM elements and does not send any actual data to your server.

Usage

var domFeedback = new DOMFeedback({
	broadcast: '../src/dom-feedback-copy.html'
});

var button = document.createElement('span');
button.className = 'dom-feedback-button';
button.innerHTML = 'Feedback';
button.onclick = function () {
  document.body.removeChild(button);
  domFeedback.init();
};
document.body.appendChild(button);

Demo

A demo (running latest example/) can be viewed here.

About

Feedback tool similar to the Google Feedback tool seen on Google+

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published