Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add js lib versions used #234

Open
wants to merge 10 commits into
base: develop
Choose a base branch
from
1 change: 1 addition & 0 deletions static/js/libs/audiocontext.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
// Version 6ffd3f2917d32c28a6651644843edb979b42c3f0
(function(name, definition) {
if (typeof exports === "object") {
module.exports = definition();
Expand Down
4 changes: 2 additions & 2 deletions static/js/libs/avltree.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
* - reverseOrderTraverse O(logn + k), where k is number of traversed nodes
* </pre>
*/

// Version 6ffd3f2917d32c28a6651644843edb979b42c3f0

// Compatibility code to run standalone.
(function(root) {
Expand Down Expand Up @@ -836,4 +836,4 @@ AvlTree.Node.prototype.isLeftChild = function() {
// Return as global.
root.AvlTree = AvlTree;

}(window));
}(window));
1 change: 1 addition & 0 deletions static/js/libs/bootstrap.file-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<a class="btn">Browse</a>

*/
// Version 1.0.0
(function($) {

$.fn.bootstrapFileInput = function() {
Expand Down
1 change: 1 addition & 0 deletions static/js/libs/humanize.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
// Version 0.0.9

(function() {

Expand Down
4 changes: 3 additions & 1 deletion static/js/libs/rAF.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel

// MIT license
// Version 682e5c880c92b445650c4880a6bf9f3897ec1c5b
// Repo https://gist.github.com/paulirish/1579671/682e5c880c92b445650c4880a6bf9f3897ec1c5b

(function() {
var lastTime = 0;
Expand All @@ -28,4 +30,4 @@
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}());
}());
1 change: 1 addition & 0 deletions static/js/libs/sha.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions static/js/libs/sjcl.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* @author Mike Hamburg
* @author Dan Boneh
*/
// Version 1.0.2

"use strict";
/*jslint indent: 2, bitwise: false, nomen: false, plusplus: false, white: false, regexp: false */
Expand Down
3 changes: 2 additions & 1 deletion static/js/libs/toastr.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*
* Project: https://github.com/CodeSeven/toastr
*/
// Version 2.1.0
; (function (define) {
define(['jquery'], function ($) {
return (function () {
Expand Down Expand Up @@ -372,4 +373,4 @@
} else {
window['toastr'] = factory(window['jQuery']);
}
}));
}));
3 changes: 2 additions & 1 deletion static/js/libs/webrtc.adapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Version 5b271d2cf71dd21805b7dc0ded7ef97ac764307e

var getUserMedia = null;
var attachMediaStream = null;
Expand Down Expand Up @@ -500,4 +501,4 @@ if (typeof module !== 'undefined') {
//trace: not exposed on purpose.
};
});
}
}
1 change: 1 addition & 0 deletions static/js/services/visibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Version 0.1.0

"use strict";
define(['visibly'], function(visibly) {
Expand Down