123456789101112131415161718192021 |
- // Licensed Materials - Property of IBM
- //
- // IBM Cognos Products: ps
- //
- // (C) Copyright IBM Corp. 2010, 2011
- //
- // US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- // Copyright (C) 2008 Cognos Incorporated. All rights reserved.
- // Cognos and the Cognos logo are trademarks of Cognos Incorporated.
- dojo.provide("ps.deployment");
- dojo.declare("ps.deployment",null, {
- targetLocationWarningExists: function(document) {
- return dojo.query("img." + this.getWarningClass()).length > 0;
- },
- getWarningClass: function() {
- return "warningTargetLocation";
- }
- });
|