# HG changeset patch # User Sebastian Kruse # Date 1353937339 -3600 # Node ID 8f1aa93fad094571eac05d356befba55b46d972e # Parent 775477d897092f4ae87a27c5e7121293ba6ff66d added missing class attribute of map canvas diff -r 775477d89709 -r 8f1aa93fad09 war/scripts/sti/STIMap.js --- a/war/scripts/sti/STIMap.js Mon Nov 26 14:41:38 2012 +0100 +++ b/war/scripts/sti/STIMap.js Mon Nov 26 14:42:19 2012 +0100 @@ -671,6 +671,7 @@ if (cv == null) { cv = document.createElement("canvas"); cv.id = "mapCanvas"; + cv.className = "mapCanvas"; mapWindow.appendChild(cv); } cv.width = document.getElementById(this.container).clientWidth;