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.
15 lines
418 B
15 lines
418 B
define(["doh/runner"], function(doh) { |
|
// summary: |
|
// A sample DOH plugin showing wrapping/augmentation of DOH |
|
// We extend the 'run' method to inject a 'hello world' kind of statement into the output |
|
var origRun = doh.run, |
|
registered = false; |
|
|
|
doh.run = function() { |
|
if(!registered) { |
|
doh.debug("doh.plugins.hello plugin says Hello!"); |
|
registered = true; |
|
} |
|
origRun.apply(doh, arguments); |
|
} |
|
});
|
|
|