Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.

Avoid polluting browser console #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions lib/client/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
* under the License.
*
*/
var _bound,
_console = ripple('console');
var _bound;

function _bindObjects(win, doc) {
if (!win.tinyHippos) {
Expand All @@ -43,8 +42,6 @@ function _post(src) {
var event = ripple('event'),
frame = _createFrame(src);

_console.log("Initialization Finished (Make it so.)");

frame.onload = function () {
var bootLoader = document.querySelector("#emulator-booting"),
id;
Expand All @@ -70,8 +67,6 @@ function _bootstrap() {
console.clear();
}

_console.log("Ripple :: Environment Warming Up (Tea. Earl Gray. Hot.)");

window.tinyHippos = ripple('index');

tinyHippos.boot(function () {
Expand Down