mirror of
https://github.com/Synzvato/decentraleyes.git
synced 2026-01-06 06:08:25 -05:00
Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
524981b841 | ||
|
|
9822093473 | ||
|
|
d04bb51a4d | ||
|
|
926d49d107 | ||
|
|
09a02eb5f3 | ||
|
|
286f7c7f66 | ||
|
|
021cac82dc | ||
|
|
e288d8195d | ||
|
|
20e3ec02b1 | ||
|
|
74fca95767 | ||
|
|
0c6325bb1f | ||
|
|
7f79e6999d | ||
|
|
082c9e78d0 | ||
|
|
b411d04b6f | ||
|
|
54c16775d2 | ||
|
|
f16a81c249 | ||
|
|
4396c1c9f0 | ||
|
|
c02257f184 | ||
|
|
c3f230f32d | ||
|
|
e595faa541 | ||
|
|
146a01c5ce | ||
|
|
b199936150 | ||
|
|
85dfd71920 | ||
|
|
8d137b801b | ||
|
|
07cfc9c251 | ||
|
|
d4d07a3d38 | ||
|
|
40e2681bfd | ||
|
|
33b8f50ddc | ||
|
|
774a91ad5b | ||
|
|
f3af8d5005 | ||
|
|
61b950fa3b | ||
|
|
38317a7a81 | ||
|
|
6938a619fc | ||
|
|
8855358381 | ||
|
|
1f90b36d47 |
@@ -42,6 +42,8 @@ Suggestions in the form of **Issues** and contributions in the form of **Pull Re
|
||||
cd decentraleyes
|
||||
jpm xpi
|
||||
|
||||
> **Important:** All commits since 26 October 2016 are signed with GPG. It's likely best to ignore unsigned commits, unless you really know what you're doing. Please send an email if you have any questions or security concerns.
|
||||
|
||||
## License
|
||||
|
||||
[MPL-2.0](https://www.mozilla.org/MPL/2.0).
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
locale decentraleyes bg locale/bg/
|
||||
locale decentraleyes da locale/da/
|
||||
locale decentraleyes de locale/de/
|
||||
locale decentraleyes en-GB locale/en-GB/
|
||||
locale decentraleyes en-US locale/en-US/
|
||||
locale decentraleyes eo locale/eo/
|
||||
locale decentraleyes es locale/es/
|
||||
locale decentraleyes fi locale/fi/
|
||||
locale decentraleyes fr locale/fr/
|
||||
@@ -11,4 +13,7 @@ locale decentraleyes ja locale/ja/
|
||||
locale decentraleyes nl locale/nl/
|
||||
locale decentraleyes pl locale/pl/
|
||||
locale decentraleyes pt-PT locale/pt-PT/
|
||||
locale decentraleyes ru locale/ru/
|
||||
locale decentraleyes sv-SE locale/sv-SE/
|
||||
locale decentraleyes zh-CN locale/zh-CN/
|
||||
locale decentraleyes zh-TW locale/zh-TW/
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "decentraleyes-audit",
|
||||
"version": "1.3.0",
|
||||
"version": "1.4.0",
|
||||
"author": "Thomas Rientjes",
|
||||
"license": "MPL-2.0",
|
||||
"description": "Library audit tool for Decentraleyes.",
|
||||
|
||||
@@ -137,7 +137,7 @@ function _hashFileContents(fileContents) {
|
||||
|
||||
var hash;
|
||||
|
||||
hash = crypto.createHash('md5');
|
||||
hash = crypto.createHash('sha512');
|
||||
|
||||
hash.setEncoding('hex');
|
||||
hash.write(fileContents);
|
||||
@@ -148,20 +148,22 @@ function _hashFileContents(fileContents) {
|
||||
|
||||
function _compareResources(localResourceContents, remoteResourceContents, URL) {
|
||||
|
||||
var hadSourceMappingURL = sourceMappingURL.existsIn(remoteResourceContents);
|
||||
remoteResourceContents = sourceMappingURL.removeFrom(remoteResourceContents);
|
||||
|
||||
var hasSourceMappingURL = sourceMappingURL.existsIn(remoteResourceContents);
|
||||
var sourceMappingNotice = '[ ] REMOTE RESOURCE HAD SOURCE MAPPING URL';
|
||||
|
||||
if (hadSourceMappingURL) {
|
||||
if (hasSourceMappingURL) {
|
||||
remoteResourceContents = sourceMappingURL.removeFrom(remoteResourceContents);
|
||||
sourceMappingNotice = '[X] REMOTE RESOURCE HAD SOURCE MAPPING URL';
|
||||
}
|
||||
|
||||
// Remove the syntax invalidation character from the local contents.
|
||||
localResourceContents = localResourceContents.substring(1);
|
||||
|
||||
var localResourceHash = _hashFileContents(localResourceContents);
|
||||
var remoteResourceHash = _hashFileContents(remoteResourceContents);
|
||||
|
||||
console.log(localResourceHash);
|
||||
console.log(remoteResourceHash);
|
||||
console.log('RESOURCE HASH (SHA512): ' + localResourceHash);
|
||||
console.log('RESOURCE HASH (SHA512): ' + remoteResourceHash);
|
||||
|
||||
var fileHashesMatch = (localResourceHash === remoteResourceHash);
|
||||
|
||||
@@ -172,9 +174,8 @@ function _compareResources(localResourceContents, remoteResourceContents, URL) {
|
||||
}
|
||||
|
||||
console.log();
|
||||
console.log(sourceMappingNotice);
|
||||
console.log('[X] LOCAL AND REMOTE RESOURCE HASHES MATCH');
|
||||
|
||||
console.log(sourceMappingNotice);
|
||||
}
|
||||
|
||||
function _showCompletedMessage() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.1
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.2
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.3
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.4
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.5
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.6
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.0.8
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.0
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.1
|
||||
(c) 2010-2012 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.10
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.15
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.16
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.20
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.23
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.26
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.28
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.2.29
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.0
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.10
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.11
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.14
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.15
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.3
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.3.8
|
||||
(c) 2010-2014 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.0
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.2
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
AngularJS v1.4.8
|
||||
(c) 2010-2015 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.0
|
||||
@// Backbone.js 0.9.0
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
// For all details and documentation:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.1
|
||||
@// Backbone.js 0.9.1
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.10
|
||||
@// Backbone.js 0.9.10
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.2
|
||||
@// Backbone.js 0.9.2
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Backbone.js 0.9.9
|
||||
@// Backbone.js 0.9.9
|
||||
|
||||
// (c) 2010-2012 Jeremy Ashkenas, DocumentCloud Inc.
|
||||
// Backbone may be freely distributed under the MIT license.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2013, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: ©2011-2013 Tilde Inc. and contributors
|
||||
// Portions ©2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: Copyright 2011-2013 Tilde Inc. and contributors
|
||||
// Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// ==========================================================================
|
||||
@// ==========================================================================
|
||||
// Project: Ember - JavaScript Application Framework
|
||||
// Copyright: Copyright 2011-2013 Tilde Inc. and contributors
|
||||
// Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* @overview Ember - JavaScript Application Framework
|
||||
* @copyright Copyright 2011-2014 Tilde Inc. and contributors
|
||||
* Portions Copyright 2006-2011 Strobe Inc.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* Ext Core Library 3.0
|
||||
* http://extjs.com/
|
||||
* Copyright(c) 2006-2009, Ext JS, LLC.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* Ext Core Library 3.0
|
||||
* http://extjs.com/
|
||||
* Copyright(c) 2006-2009, Ext JS, LLC.
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.0/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.0/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.1/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.1/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.2/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.2/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.3/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.3/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
5
data/resources/jquery/1.12.4/jquery.min.js.dec
Normal file
5
data/resources/jquery/1.12.4/jquery.min.js.dec
Normal file
File diff suppressed because one or more lines are too long
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery 1.2.3 - New Wave Javascript
|
||||
*
|
||||
* Copyright (c) 2008 John Resig (jquery.com)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery 1.2.6 - New Wave Javascript
|
||||
*
|
||||
* Copyright (c) 2008 John Resig (jquery.com)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*
|
||||
@/*
|
||||
* jQuery JavaScript Library v1.3.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.3
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.4.4
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.5.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6.1
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
/*!
|
||||
@/*!
|
||||
* jQuery JavaScript Library v1.6.2
|
||||
* http://jquery.com/
|
||||
*
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user