Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
BZ1130465 - fix problem using ShapeRepository and Saving BP's in IE9
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Lindop committed Sep 24, 2015
1 parent 64b45fd commit 318616d
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -26,3 +26,11 @@ if ((typeof Range !== "undefined") && !Range.prototype.createContextualFragment)
return frag;
};
}

// BZ1130465 - Designer cannot save BP's in IE9 due to missing function window.btoa
if (!window.btoa) {
window.btoa = function(input) { return Base64.encode(input); };
}
if (!window.atob) {
window.atob = function(input) { return Base64.decode(input); };
}

0 comments on commit 318616d

Please sign in to comment.