Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
updated packages via bower
  • Loading branch information
ralsina committed May 13, 2015
1 parent 2fbe499 commit d51dd9c
Show file tree
Hide file tree
Showing 99 changed files with 9,717 additions and 9,243 deletions.
6 changes: 3 additions & 3 deletions bower.json
Expand Up @@ -9,9 +9,9 @@
"license": "MIT",
"private": true,
"dependencies": {
"bootstrap": "~3.3.2",
"bootstrap": "~3.3.4",
"jquery": "<2.0.0",
"jquery-colorbox": "~1.5.14",
"moment": "~2.8.4"
"jquery-colorbox": "~1.6.0",
"moment": "~2.10.3"
}
}
2 changes: 1 addition & 1 deletion bower_components/bootstrap/.bower.json
Expand Up @@ -43,6 +43,6 @@
"commit": "a10eb60bc0b07b747fa0c4ebd8821eb7307bd07f"
},
"_source": "git://github.com/twbs/bootstrap.git",
"_target": "~3.3.2",
"_target": "~3.3.4",
"_originalSource": "bootstrap"
}
10 changes: 5 additions & 5 deletions bower_components/jquery-colorbox/.bower.json
@@ -1,7 +1,7 @@
{
"name": "jquery-colorbox",
"description": "jQuery lightbox and modal window plugin",
"version": "1.5.15",
"version": "1.6.0",
"dependencies": {
"jquery": ">=1.3.2"
},
Expand Down Expand Up @@ -38,13 +38,13 @@
"example4/index.html",
"example5/index.html"
],
"_release": "1.5.15",
"_release": "1.6.0",
"_resolution": {
"type": "version",
"tag": "1.5.15",
"commit": "a611a80c152732b5afc7b1fa7ea0d641515f6268"
"tag": "1.6.0",
"commit": "7816dbccff2a0450fd53e726b7096ac38c1fe30c"
},
"_source": "git://github.com/jackmoore/colorbox.git",
"_target": "~1.5.14",
"_target": "~1.6.0",
"_originalSource": "jquery-colorbox"
}
4 changes: 4 additions & 0 deletions bower_components/jquery-colorbox/README.md
Expand Up @@ -3,6 +3,10 @@ A customizable lightbox plugin for jQuery. See the [project page](http://jacklm

## Changelog:

### Version 1.6.0 - 2015/03/03

* Added two new properties that expose how <img> and <iframe> elements are created, to give users direct control over those elements. Fixes #700.

### Version 1.5.15 - 2015/02/25

* Adding to NPM, merged white-space cleanup & new language file.
Expand Down
2 changes: 1 addition & 1 deletion bower_components/jquery-colorbox/bower.json
@@ -1,7 +1,7 @@
{
"name": "jquery-colorbox",
"description": "jQuery lightbox and modal window plugin",
"version": "1.5.15",
"version": "1.6.0",
"dependencies": {
"jquery": ">=1.3.2"
},
Expand Down
4 changes: 2 additions & 2 deletions bower_components/jquery-colorbox/jquery.colorbox-min.js

Large diffs are not rendered by default.

57 changes: 37 additions & 20 deletions bower_components/jquery-colorbox/jquery.colorbox.js
@@ -1,5 +1,5 @@
/*!
Colorbox 1.5.15
Colorbox 1.6.0
license: MIT
http://www.jacklmoore.com/colorbox
*/
Expand Down Expand Up @@ -85,6 +85,39 @@
},
title: function() {
return this.title;
},
createImg: function() {
var img = new Image();
var attrs = $(this).data('cbox-img-attrs');

if (typeof attrs === 'object') {
$.each(attrs, function(key, val){
img[key] = val;
});
}

return img;
},
createIframe: function() {
var iframe = document.createElement('iframe');
var attrs = $(this).data('cbox-iframe-attrs');

if (typeof attrs === 'object') {
$.each(attrs, function(key, val){
iframe[key] = val;
});
}

if ('frameBorder' in iframe) {
iframe.frameBorder = 0;
}
if ('allowTransparency' in iframe) {
iframe.allowTransparency = "true";
}
iframe.name = (new Date()).getTime(); // give the iframe a unique name to prevent caching
iframe.allowFullScreen = true;

return iframe;
}
},

Expand Down Expand Up @@ -834,15 +867,8 @@
}

if (settings.get('iframe')) {
iframe = document.createElement('iframe');

if ('frameBorder' in iframe) {
iframe.frameBorder = 0;
}

if ('allowTransparency' in iframe) {
iframe.allowTransparency = "true";
}
iframe = settings.get('createIframe');

if (!settings.get('scrolling')) {
iframe.scrolling = "no";
Expand All @@ -851,9 +877,7 @@
$(iframe)
.attr({
src: settings.get('href'),
name: (new Date()).getTime(), // give the iframe a unique name to prevent caching
'class': prefix + 'Iframe',
allowFullScreen : true // allow HTML5 video to go fullscreen
'class': prefix + 'Iframe'
})
.one('load', complete)
.appendTo($loaded);
Expand Down Expand Up @@ -946,7 +970,7 @@

href = retinaUrl(settings, href);

photo = new Image();
photo = settings.get('createImg');

$(photo)
.addClass(prefix + 'Photo')
Expand All @@ -963,13 +987,6 @@
setTimeout(function(){
var percent;

$.each(['alt', 'longdesc', 'aria-describedby'], function(i,val){
var attr = $(settings.el).attr(val) || $(settings.el).attr('data-'+val);
if (attr) {
photo.setAttribute(val, attr);
}
});

if (settings.get('retinaImage') && window.devicePixelRatio > 1) {
photo.height = photo.height / window.devicePixelRatio;
photo.width = photo.width / window.devicePixelRatio;
Expand Down
5 changes: 3 additions & 2 deletions bower_components/jquery-colorbox/package.json
@@ -1,7 +1,7 @@
{
"name": "jquery-colorbox",
"description": "jQuery lightbox and modal window plugin.",
"version": "1.5.15",
"version": "1.6.0",
"keywords": [
"modal",
"lightbox",
Expand All @@ -15,6 +15,7 @@
"url": "http://www.jacklmoore.com",
"email": "hello@jacklmoore.com"
},
"main": "jquery.colorbox.js",
"license": "MIT",
"homepage": "http://www.jacklmoore.com/colorbox",
"demo": "http://www.jacklmoore.com/colorbox",
Expand All @@ -24,5 +25,5 @@
},
"dependencies": {
"jquery": ">=1.3.2"
},
}
}
19 changes: 11 additions & 8 deletions bower_components/moment/.bower.json
@@ -1,30 +1,33 @@
{
"name": "moment",
"version": "2.8.4",
"version": "2.10.3",
"main": "moment.js",
"ignore": [
"**/.*",
"node_modules",
"benchmarks",
"bower_components",
"test",
"tests",
"meteor",
"node_modules",
"scripts",
"tasks",
"test",
"component.json",
"composer.json",
"CONTRIBUTING.md",
"ender.js",
"Gruntfile.js",
"Moment.js.nuspec",
"package.js",
"package.json"
],
"homepage": "https://github.com/moment/moment",
"_release": "2.8.4",
"_release": "2.10.3",
"_resolution": {
"type": "version",
"tag": "2.8.4",
"commit": "7ae59de2fc3a1298ae829f6369fe3589b2cd87f8"
"tag": "2.10.3",
"commit": "6fa444238494318e3c488c81d8520ad2eba8bae7"
},
"_source": "git://github.com/moment/moment.git",
"_target": "~2.8.4",
"_target": "~2.10.3",
"_originalSource": "moment"
}
39 changes: 39 additions & 0 deletions bower_components/moment/CHANGELOG.md
@@ -1,6 +1,45 @@
Changelog
=========

### 2.10.3 [See full changelog](https://gist.github.com/ichernev/f264b9bed5b00f8b1b7f)

* add `moment.fn.to` and `moment.fn.toNow` (similar to `from` and `fromNow`)
* new locales (Sinhalese (si), Montenegrin (me), Javanese (ja))
* performance improvements

### 2.10.2

* fixed moment-with-locales in browser env caused by esperanto change

### 2.10.1

* regression: Add moment.duration.fn back

### 2.10.0

Ported code to es6 modules.

### 2.9.0 [See full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)

languages:
* [2104](https://github.com/moment/moment/issues/2104) Frisian (fy) language file with unit test
* [2097](https://github.com/moment/moment/issues/2097) add ar-tn locale

deprecations:
* [2074](https://github.com/moment/moment/issues/2074) Implement `moment.fn.utcOffset`, deprecate `momen.fn.zone`

features:
* [2088](https://github.com/moment/moment/issues/2088) add moment.fn.isBetween
* [2054](https://github.com/moment/moment/issues/2054) Call updateOffset when creating moment (needed for default timezone in
moment-timezone)
* [1893](https://github.com/moment/moment/issues/1893) Add moment.isDate method
* [1825](https://github.com/moment/moment/issues/1825) Implement toJSON function on Duration
* [1809](https://github.com/moment/moment/issues/1809) Allowing moment.set() to accept a hash of units
* [2128](https://github.com/moment/moment/issues/2128) Add firstDayOfWeek, firstDayOfYear locale getters
* [2131](https://github.com/moment/moment/issues/2131) Add quarter diff support

Some bugfixes and language improvements -- [full changelog](https://gist.github.com/ichernev/0c9a9b49951111a27ce7)

### 2.8.4 [See full changelog](https://gist.github.com/ichernev/a4fcb0a46d74e4b9b996)

Features:
Expand Down
2 changes: 1 addition & 1 deletion bower_components/moment/LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2011-2014 Tim Wood, Iskren Chernev, Moment.js contributors
Copyright (c) 2011-2015 Tim Wood, Iskren Chernev, Moment.js contributors

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
26 changes: 22 additions & 4 deletions bower_components/moment/README.md
@@ -1,9 +1,24 @@
[![Join the chat at https://gitter.im/moment/moment](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/moment/moment?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

[![NPM version][npm-version-image]][npm-url] [![NPM downloads][npm-downloads-image]][npm-url] [![MIT License][license-image]][license-url] [![Build Status][travis-image]][travis-url]

A lightweight javascript date library for parsing, validating, manipulating, and formatting dates.
A lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates.

## [Documentation](http://momentjs.com/docs/)

## Port to ES6 (version 2.10.0)

Moment 2.10.0 does not bring any new features, but the code is now written in
es6 modules and placed inside `src/`. Previously `moment.js`, `locale/*.js` and
`test/moment/*.js`, `test/locale/*.js` contained the source of the project. Now
the source is in `src/`, temporary build (es5) files are placed under
`build/umd/` (for running tests during development), and the `moment.js` and
`locale/*.js` files are updated only on release.

If you want to use a particular revision of the code, make sure to run
`grunt transpile update-index`, so `moment.js` and `locales/*.js` are synced
with `src/*`. We might place that in a commit hook in the future.

## Upgrading to 2.0.0

There are a number of small backwards incompatible changes with version 2.0.0. [See the full descriptions here](https://gist.github.com/timrwood/e72f2eef320ed9e37c51#backwards-incompatible-changes)
Expand All @@ -20,13 +35,16 @@ There are a number of small backwards incompatible changes with version 2.0.0. [

* Duplicate `Date` passed to `moment()` instead of referencing it.

## [Changelog](CHANGELOG.md)
## [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md)

## [Contributing](https://github.com/moment/moment/blob/develop/CONTRIBUTING.md)

## [Contributing](CONTRIBUTING.md)
We're looking for co-maintainers! If you want to become a master of time please
write to [ichernev](https://github.com/ichernev).

## License

Moment.js is freely distributable under the terms of the [MIT license](LICENSE).
Moment.js is freely distributable under the terms of the [MIT license](https://github.com/moment/moment/blob/develop/LICENSE).

[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
[license-url]: LICENSE
Expand Down
10 changes: 0 additions & 10 deletions bower_components/moment/benchmarks/clone.js

This file was deleted.

11 changes: 7 additions & 4 deletions bower_components/moment/bower.json
@@ -1,19 +1,22 @@
{
"name": "moment",
"version": "2.8.4",
"version": "2.10.3",
"main": "moment.js",
"ignore": [
"**/.*",
"node_modules",
"benchmarks",
"bower_components",
"test",
"tests",
"meteor",
"node_modules",
"scripts",
"tasks",
"test",
"component.json",
"composer.json",
"CONTRIBUTING.md",
"ender.js",
"Gruntfile.js",
"Moment.js.nuspec",
"package.js",
"package.json"
]
Expand Down

0 comments on commit d51dd9c

Please sign in to comment.