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.
 
 
 
 
 
 

12 lines
296 B

  1. //use the !rel flag to load file relative to this module or to baseUrl
  2. define(['image!./software_engineer.png!rel'], function(engineer){
  3. return {
  4. init : function(wrapper){
  5. engineer.style.display = 'block';
  6. wrapper.appendChild(engineer);
  7. }
  8. };
  9. });