1.1.1
This commit is contained in:
Родитель
d86d5d8326
Коммит
4afd903dad
|
@ -0,0 +1,7 @@
|
|||
== 1.1.1
|
||||
|
||||
* Removed trailing comma that broke IE and Closure compiler (GitHub issues #1 and #2)
|
||||
|
||||
== 1.1.0
|
||||
|
||||
* Initial release
|
|
@ -49,6 +49,6 @@ Braintree.create = function (publicKey) {
|
|||
return {
|
||||
encrypt: encrypt,
|
||||
publicKey: my.publicKey,
|
||||
version: '1.1.0'
|
||||
version: '1.1.1'
|
||||
};
|
||||
};
|
||||
|
|
|
@ -481,7 +481,7 @@ if(typeof(pidCrypt) != 'undefined')
|
|||
var test = [
|
||||
{ value: [0x27], expected: 0x27 },
|
||||
{ value: [0x81, 0xC9], expected: 0xC9 },
|
||||
{ value: [0x83, 0xFE, 0xDC, 0xBA], expected: 0xFEDCBA },
|
||||
{ value: [0x83, 0xFE, 0xDC, 0xBA], expected: 0xFEDCBA }
|
||||
];
|
||||
for (var i = 0, max = test.length; i < max; ++i) {
|
||||
var pos = 0;
|
||||
|
@ -491,4 +491,4 @@ if(typeof(pidCrypt) != 'undefined')
|
|||
document.write("In test[" + i + "] expected " + test[i].expected + " got " + res + "\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<script type="text/javascript" src="infrastructure/jasmine-standalone-1.0.0/lib/jasmine-1.0.0/jasmine-html.js"></script>
|
||||
|
||||
<!-- include source files here... -->
|
||||
<script type="text/javascript" src="../target/braintree-1.1.0.min.js"></script>
|
||||
<script type="text/javascript" src="../target/braintree-1.1.1.min.js"></script>
|
||||
|
||||
<!-- include spec files here... -->
|
||||
<% spec_files.each do |source_file| %>
|
||||
|
|
Загрузка…
Ссылка в новой задаче