fixed forge bundle

This commit is contained in:
Tankred Hase 2013-05-14 01:38:27 +02:00
parent 7d14dbfa23
commit 911f9929a9
1 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,5 @@
(function(window) {
/**
* Utility functions for web applications.
*
@ -5,7 +7,7 @@
*
* Copyright (c) 2010-2012 Digital Bazaar, Inc.
*/
(function(window) {
(function() {
/* ########## Begin module implementation ########## */
function initModule(forge) {
@ -11655,4 +11657,6 @@ if(nodeDefine || typeof define === 'function') {
};
});
}
})((typeof window !== 'undefined') ? window : null);
})();
})((typeof window !== 'undefined') ? window : null);