123456789101112131415161718192021 |
- dojo.provide("ps.deployment");
- dojo.declare("ps.deployment",null, {
- targetLocationWarningExists: function(document) {
- return dojo.query("img." + this.getWarningClass()).length > 0;
- },
- getWarningClass: function() {
- return "warningTargetLocation";
- }
- });
|