Skip to content

Commit

Permalink
updated colorbox via bower
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Jul 29, 2015
1 parent 8cf47bd commit fb00173
Show file tree
Hide file tree
Showing 207 changed files with 3,231 additions and 1,618 deletions.
8 changes: 4 additions & 4 deletions bower_components/jquery-colorbox/.bower.json
Expand Up @@ -37,12 +37,12 @@
"example4/index.html",
"example5/index.html"
],
"version": "1.6.2",
"_release": "1.6.2",
"version": "1.6.3",
"_release": "1.6.3",
"_resolution": {
"type": "version",
"tag": "1.6.2",
"commit": "b14397fd611c10ee8969c4e25535ced62cf97ace"
"tag": "1.6.3",
"commit": "f08f0ac16996b14e4ce681e0a08befc129b93924"
},
"_source": "git://github.com/jackmoore/colorbox.git",
"_target": "~1.6.0",
Expand Down
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.3 - 2015/07/27

* Fixed regression that caused error in IE8 when the calculated initial size was negative. Fixes #741

##### Version 1.6.2 - 2015/07/13

* Fixed iframe attribute name (allowFullScreen to allowFullscreen). Fixes #737
Expand Down
Expand Up @@ -8,8 +8,8 @@ jQuery.extend(jQuery.colorbox.settings, {
previous: "上一頁",
next: "下一頁",
close: "關閉",
xhrError: "此內容加載失敗.",
imgError: "此圖片加載失敗.",
xhrError: "此內容載入失敗.",
imgError: "此圖片加入失敗.",
slideshowStart: "開始幻燈片",
slideshowStop: "結束幻燈片"
});
});
4 changes: 2 additions & 2 deletions bower_components/jquery-colorbox/jquery.colorbox-min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bower_components/jquery-colorbox/jquery.colorbox.js
@@ -1,5 +1,5 @@
/*!
Colorbox 1.6.2
Colorbox 1.6.3
license: MIT
http://www.jacklmoore.com/colorbox
*/
Expand Down Expand Up @@ -413,8 +413,8 @@
var maxWidth = settings.get('maxWidth');
var maxHeight = settings.get('maxHeight');

settings.w = (maxWidth !== false ? Math.min(initialWidth, setSize(maxWidth, 'x')) : initialWidth) - loadedWidth - interfaceWidth;
settings.h = (maxHeight !== false ? Math.min(initialHeight, setSize(maxHeight, 'y')) : initialHeight) - loadedHeight - interfaceHeight;
settings.w = Math.max((maxWidth !== false ? Math.min(initialWidth, setSize(maxWidth, 'x')) : initialWidth) - loadedWidth - interfaceWidth, 0);
settings.h = Math.max((maxHeight !== false ? Math.min(initialHeight, setSize(maxHeight, 'y')) : initialHeight) - loadedHeight - interfaceHeight, 0);

$loaded.css({width:'', height:settings.h});
publicMethod.position();
Expand Down
2 changes: 1 addition & 1 deletion bower_components/jquery-colorbox/package.json
@@ -1,7 +1,7 @@
{
"name": "jquery-colorbox",
"description": "jQuery lightbox and modal window plugin.",
"version": "1.6.2",
"version": "1.6.3",
"keywords": [
"modal",
"lightbox",
Expand Down
8 changes: 4 additions & 4 deletions bower_components/moment/.bower.json
@@ -1,6 +1,5 @@
{
"name": "moment",
"version": "2.10.3",
"main": "moment.js",
"ignore": [
"**/.*",
Expand All @@ -21,11 +20,12 @@
"package.json"
],
"homepage": "https://github.com/moment/moment",
"_release": "2.10.3",
"version": "2.10.6",
"_release": "2.10.6",
"_resolution": {
"type": "version",
"tag": "2.10.3",
"commit": "6fa444238494318e3c488c81d8520ad2eba8bae7"
"tag": "2.10.6",
"commit": "446ce77eb08c5c862d7b0b11ef1d2e884d12e3d7"
},
"_source": "git://github.com/moment/moment.git",
"_target": "~2.10.3",
Expand Down
18 changes: 18 additions & 0 deletions bower_components/moment/CHANGELOG.md
@@ -1,6 +1,24 @@
Changelog
=========

### 2.10.6

[#2515](https://github.com/moment/moment/pull/2515) Fix regression introduced
in `2.10.5` related to `moment.ISO_8601` parsing.

### 2.10.5 [See full changelog](https://gist.github.com/ichernev/6ec13ac7efc396da44b2)

Important changes:
* [#2357](https://github.com/moment/moment/pull/2357) Improve unit bubbling for ISO dates
this fixes day to year conversions to work around end-of-year (~365 days). As
a side effect 365 days is 11 months and 30 days, and 366 days is one year.
* [#2438](https://github.com/moment/moment/pull/2438) Fix inconsistent moment.min and moment.max results
Return invalid result if any of the inputs is invalid
* [#2494](https://github.com/moment/moment/pull/2494) Fix two digit year parsing with YYYY format
This brings the benefits of YY to YYYY
* [#2368](https://github.com/moment/moment/pull/2368) perf: use faster form of copying dates, across the board improvement


### 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`)
Expand Down
1 change: 1 addition & 0 deletions bower_components/moment/README.md
@@ -1,6 +1,7 @@
[![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]
[![Coverage Status](https://coveralls.io/repos/moment/moment/badge.svg?branch=master)](https://coveralls.io/r/moment/moment?branch=master)

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

Expand Down
1 change: 0 additions & 1 deletion bower_components/moment/bower.json
@@ -1,6 +1,5 @@
{
"name": "moment",
"version": "2.10.3",
"main": "moment.js",
"ignore": [
"**/.*",
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/af.js
Expand Up @@ -28,11 +28,11 @@
},
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd, D MMMM YYYY LT'
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd, D MMMM YYYY HH:mm'
},
calendar : {
sameDay : '[Vandag om] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/ar-ma.js
Expand Up @@ -18,11 +18,11 @@
weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd D MMMM YYYY LT'
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd D MMMM YYYY HH:mm'
},
calendar : {
sameDay: '[اليوم على الساعة] LT',
Expand Down
4 changes: 2 additions & 2 deletions bower_components/moment/locale/ar-sa.js
Expand Up @@ -44,8 +44,8 @@
LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd D MMMM YYYY LT'
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd D MMMM YYYY HH:mm'
},
meridiemParse: /ص|م/,
isPM : function (input) {
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/ar-tn.js
Expand Up @@ -16,11 +16,11 @@
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
longDateFormat: {
LT: 'HH:mm',
LTS: 'LT:ss',
LTS: 'HH:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY LT',
LLLL: 'dddd D MMMM YYYY LT'
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd D MMMM YYYY HH:mm'
},
calendar: {
sameDay: '[اليوم على الساعة] LT',
Expand Down
4 changes: 2 additions & 2 deletions bower_components/moment/locale/ar.js
Expand Up @@ -77,8 +77,8 @@
LTS : 'HH:mm:ss',
L : 'D/\u200FM/\u200FYYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd D MMMM YYYY LT'
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd D MMMM YYYY HH:mm'
},
meridiemParse: /ص|م/,
isPM : function (input) {
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/az.js
Expand Up @@ -38,11 +38,11 @@
weekdaysMin : 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD.MM.YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd, D MMMM YYYY LT'
LLL : 'D MMMM YYYY HH:mm',
LLLL : 'dddd, D MMMM YYYY HH:mm'
},
calendar : {
sameDay : '[bugün saat] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/be.js
Expand Up @@ -62,11 +62,11 @@
weekdaysMin : 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD.MM.YYYY',
LL : 'D MMMM YYYY г.',
LLL : 'D MMMM YYYY г., LT',
LLLL : 'dddd, D MMMM YYYY г., LT'
LLL : 'D MMMM YYYY г., HH:mm',
LLLL : 'dddd, D MMMM YYYY г., HH:mm'
},
calendar : {
sameDay: '[Сёння ў] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/bg.js
Expand Up @@ -17,11 +17,11 @@
weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),
longDateFormat : {
LT : 'H:mm',
LTS : 'LT:ss',
LTS : 'H:mm:ss',
L : 'D.MM.YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd, D MMMM YYYY LT'
LLL : 'D MMMM YYYY H:mm',
LLLL : 'dddd, D MMMM YYYY H:mm'
},
calendar : {
sameDay : '[Днес в] LT',
Expand Down
8 changes: 4 additions & 4 deletions bower_components/moment/locale/bn.js
Expand Up @@ -45,8 +45,8 @@
LTS : 'A h:mm:ss সময়',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY, LT',
LLLL : 'dddd, D MMMM YYYY, LT'
LLL : 'D MMMM YYYY, A h:mm সময়',
LLLL : 'dddd, D MMMM YYYY, A h:mm সময়'
},
calendar : {
sameDay : '[আজ] LT',
Expand Down Expand Up @@ -81,7 +81,7 @@
return symbolMap[match];
});
},
meridiemParse: /রাত|শকাল|দুপুর|বিকেল|রাত/,
meridiemParse: /রাত|সকাল|দুপুর|বিকেল|রাত/,
isPM: function (input) {
return /^(দুপুর|বিকেল|রাত)$/.test(input);
},
Expand All @@ -92,7 +92,7 @@
if (hour < 4) {
return 'রাত';
} else if (hour < 10) {
return 'শকাল';
return 'সকাল';
} else if (hour < 17) {
return 'দুপুর';
} else if (hour < 20) {
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/bo.js
Expand Up @@ -42,11 +42,11 @@
weekdaysMin : 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split('_'),
longDateFormat : {
LT : 'A h:mm',
LTS : 'LT:ss',
LTS : 'A h:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY, LT',
LLLL : 'dddd, D MMMM YYYY, LT'
LLL : 'D MMMM YYYY, A h:mm',
LLLL : 'dddd, D MMMM YYYY, A h:mm'
},
calendar : {
sameDay : '[དི་རིང] LT',
Expand Down
4 changes: 2 additions & 2 deletions bower_components/moment/locale/br.js
Expand Up @@ -64,8 +64,8 @@
LTS : 'h[e]mm:ss A',
L : 'DD/MM/YYYY',
LL : 'D [a viz] MMMM YYYY',
LLL : 'D [a viz] MMMM YYYY LT',
LLLL : 'dddd, D [a viz] MMMM YYYY LT'
LLL : 'D [a viz] MMMM YYYY h[e]mm A',
LLLL : 'dddd, D [a viz] MMMM YYYY h[e]mm A'
},
calendar : {
sameDay : '[Hiziv da] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/bs.js
Expand Up @@ -71,11 +71,11 @@
weekdaysMin : 'ne_po_ut_sr_če_pe_su'.split('_'),
longDateFormat : {
LT : 'H:mm',
LTS : 'LT:ss',
LTS : 'H:mm:ss',
L : 'DD. MM. YYYY',
LL : 'D. MMMM YYYY',
LLL : 'D. MMMM YYYY LT',
LLLL : 'dddd, D. MMMM YYYY LT'
LLL : 'D. MMMM YYYY H:mm',
LLLL : 'dddd, D. MMMM YYYY H:mm'
},
calendar : {
sameDay : '[danas u] LT',
Expand Down
4 changes: 2 additions & 2 deletions bower_components/moment/locale/ca.js
Expand Up @@ -20,8 +20,8 @@
LTS : 'LT:ss',
L : 'DD/MM/YYYY',
LL : 'D MMMM YYYY',
LLL : 'D MMMM YYYY LT',
LLLL : 'dddd D MMMM YYYY LT'
LLL : 'D MMMM YYYY H:mm',
LLLL : 'dddd D MMMM YYYY H:mm'
},
calendar : {
sameDay : function () {
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/cs.js
Expand Up @@ -83,11 +83,11 @@
weekdaysMin : 'ne_po_út_st_čt_pá_so'.split('_'),
longDateFormat : {
LT: 'H:mm',
LTS : 'LT:ss',
LTS : 'H:mm:ss',
L : 'DD.MM.YYYY',
LL : 'D. MMMM YYYY',
LLL : 'D. MMMM YYYY LT',
LLLL : 'dddd D. MMMM YYYY LT'
LLL : 'D. MMMM YYYY H:mm',
LLLL : 'dddd D. MMMM YYYY H:mm'
},
calendar : {
sameDay: '[dnes v] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/cv.js
Expand Up @@ -17,11 +17,11 @@
weekdaysMin : 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD-MM-YYYY',
LL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ]',
LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], LT',
LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], LT'
LLL : 'YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm',
LLLL : 'dddd, YYYY [ҫулхи] MMMM [уйӑхӗн] D[-мӗшӗ], HH:mm'
},
calendar : {
sameDay: '[Паян] LT [сехетре]',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/cy.js
Expand Up @@ -18,11 +18,11 @@
// time formats are the same as en-gb
longDateFormat: {
LT: 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L: 'DD/MM/YYYY',
LL: 'D MMMM YYYY',
LLL: 'D MMMM YYYY LT',
LLLL: 'dddd, D MMMM YYYY LT'
LLL: 'D MMMM YYYY HH:mm',
LLLL: 'dddd, D MMMM YYYY HH:mm'
},
calendar: {
sameDay: '[Heddiw am] LT',
Expand Down
6 changes: 3 additions & 3 deletions bower_components/moment/locale/da.js
Expand Up @@ -17,11 +17,11 @@
weekdaysMin : 'sø_ma_ti_on_to_fr_lø'.split('_'),
longDateFormat : {
LT : 'HH:mm',
LTS : 'LT:ss',
LTS : 'HH:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D. MMMM YYYY',
LLL : 'D. MMMM YYYY LT',
LLLL : 'dddd [d.] D. MMMM YYYY LT'
LLL : 'D. MMMM YYYY HH:mm',
LLLL : 'dddd [d.] D. MMMM YYYY HH:mm'
},
calendar : {
sameDay : '[I dag kl.] LT',
Expand Down
4 changes: 2 additions & 2 deletions bower_components/moment/locale/de-at.js
Expand Up @@ -36,8 +36,8 @@
LTS: 'HH:mm:ss',
L : 'DD.MM.YYYY',
LL : 'D. MMMM YYYY',
LLL : 'D. MMMM YYYY LT',
LLLL : 'dddd, D. MMMM YYYY LT'
LLL : 'D. MMMM YYYY HH:mm',
LLLL : 'dddd, D. MMMM YYYY HH:mm'
},
calendar : {
sameDay: '[Heute um] LT [Uhr]',
Expand Down

0 comments on commit fb00173

Please sign in to comment.