You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
354 B
11 lines
354 B
define(["dojo/dom", "dojo/_base/connect", "dijit/registry", "dojo/dom-style"], |
|
function(dom, connect, registry, domStyle){ |
|
var _connectResults = []; // events connect results |
|
return { |
|
// simple view init |
|
init: function(){ |
|
var dir = domStyle.get(this.domNode,"direction"); |
|
dom.byId("headerH1").innerHTML = "APP HEADER dir = "+dir; |
|
} |
|
}; |
|
});
|
|
|