Un-needed handlers must not be download. A solution would be to use has plugin to require them: ``` js define(["./features!mspointer?mspointer", ...], function(mspointer, ...) { }); ``` with dpointer/features: ``` js define(["dojo/has"], function (has) { has.add("mspointer", ....); // .. return has; } ```