diff --git a/site/public/examples/rotating.ejs b/site/public/examples/rotating.ejs index 555c563..ef083b2 100644 --- a/site/public/examples/rotating.ejs +++ b/site/public/examples/rotating.ejs @@ -2,17 +2,17 @@

This code shows the example from the homepage, which rotates, shows randomly positioned, colored, and sized pings on the globe, and supports mouse-based dragging and zooming. It also shows the creation and use of a plugin, which powers the automatic rotation and exposes a public API.

-

The demo also shows how you can keep your globe from looking pixelated on high density displays my changing the canvas' width and height but keeping its displayed width and height the same via CSS styling.

+

The demo also shows how you can keep your globe from looking pixelated on high density displays by changing the canvas' width and height but keeping its displayed width and height the same via CSS styling.

+ style="width: 400px; height: 400px; cursor: move;">
HTML
<canvas id='basicGlobe' width='400' height='400'
-  style='width: 400px; height: 400px;'></canvas>
+ style='width: 400px; height: 400px; cursor: move;'></canvas>
JavaScript
(function() {