aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/sketch.js
blob: 6da3443d7b33a820ff12f1b174b9f1b2487f9cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
if(!dojo._hasResource["dojox.sketch"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.sketch"] = true;
dojo.provide("dojox.sketch");
try{
	// fix IE image caching issue
	document.execCommand("BackgroundImageCache", false, true);
}catch(e){ }
dojo.require("dojox.xml.DomParser");
dojo.require("dojox.sketch.UndoStack");
dojo.require("dojox.sketch.Figure");
dojo.require("dojox.sketch.Toolbar");

}