From 9b940131d3e44ff0e3146b637ae126d07b1d7230 Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Tue, 4 Jan 2011 10:30:26 -0600 Subject: [PATCH] include/canvas.js: show full user agent in console. --- include/canvas.js | 1 + 1 file changed, 1 insertion(+) diff --git a/include/canvas.js b/include/canvas.js index 93aaff72..e28c3b04 100644 --- a/include/canvas.js +++ b/include/canvas.js @@ -109,6 +109,7 @@ function constructor() { if (! conf.ctx) { conf.ctx = c.getContext('2d'); } ctx = conf.ctx; + Util.Debug("User Agent: " + navigator.userAgent); if (UE.gecko) { Util.Debug("Browser: gecko " + UE.gecko); } if (UE.webkit) { Util.Debug("Browser: webkit " + UE.webkit); } if (UE.trident) { Util.Debug("Browser: trident " + UE.trident); }