ipage 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,17 +0,0 @@
1
- $(function(){
2
- $('body').append('<div id="qunit_window" style="position:absolute;top:0px;margin: 0px auto;"><h1 id="qunit-header">Тесты</h1><h2 id="qunit-banner"></h2><div id="qunit-testrunner-toolbar"></div><h2 id="qunit-userAgent"></h2><ol id="qunit-tests"></ol><div id="qunit-fixture">test markup, will be hidden</div></div>');
3
- $('#qunit_window').hide();
4
- $(document).keydown(function(event){
5
- //alert(event.keyCode);
6
- if(event.keyCode==192){
7
- $('#qunit_window').toggle();
8
- }
9
- });
10
- QUnit.done=function(){
11
- var error_count = $('div#qunit_window span.failed').text();
12
- if(error_count!='0'){
13
- $('#qunit_window').show();
14
- }
15
- }
16
-
17
- });