vex_rails 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,2 +1,2 @@
1
- /*! vex.js, vex.dialog.js 1.3.1 */
2
- (function(){var a;a=function(a){var b,c;return b=!1,a(function(){var d;return d=(document.body||document.documentElement).style,b=void 0!==d.animation||void 0!==d.WebkitAnimation||void 0!==d.MozAnimation||void 0!==d.MsAnimation||void 0!==d.OAnimation,a(window).bind("keyup.vex",function(a){return 27===a.keyCode?c.closeByEscape():void 0})}),c={globalID:1,animationEndEvent:"animationend webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend",baseClassNames:{vex:"vex",content:"vex-content",overlay:"vex-overlay",close:"vex-close",closing:"vex-closing"},defaultOptions:{content:"",showCloseButton:!0,escapeButtonCloses:!0,overlayClosesOnClick:!0,appendLocation:"body",className:"",css:{},overlayClassName:"",overlayCSS:{},contentClassName:"",contentCSS:{},closeClassName:"",closeCSS:{}},open:function(b){return b=a.extend({},c.defaultOptions,b),b.id=c.globalID,c.globalID+=1,b.$vex=a("<div>").addClass(c.baseClassNames.vex).addClass(b.className).css(b.css).data({vex:b}),b.$vexOverlay=a("<div>").addClass(c.baseClassNames.overlay).addClass(b.overlayClassName).css(b.overlayCSS).data({vex:b}),b.overlayClosesOnClick&&b.$vexOverlay.bind("click.vex",function(b){return b.target===this?c.close(a(this).data().vex.id):void 0}),b.$vex.append(b.$vexOverlay),b.$vexContent=a("<div>").addClass(c.baseClassNames.content).addClass(b.contentClassName).css(b.contentCSS).append(b.content).data({vex:b}),b.$vex.append(b.$vexContent),b.showCloseButton&&(b.$closeButton=a("<div>").addClass(c.baseClassNames.close).addClass(b.closeClassName).css(b.closeCSS).data({vex:b}).bind("click.vex",function(){return c.close(a(this).data().vex.id)}),b.$vexContent.append(b.$closeButton)),a(b.appendLocation).append(b.$vex),b.afterOpen&&b.afterOpen(b.$vexContent,b),setTimeout(function(){return b.$vexContent.trigger("vexOpen",b)},0),b.$vexContent},getAllVexes:function(){return a("."+c.baseClassNames.vex+':not(".'+c.baseClassNames.closing+'") .'+c.baseClassNames.content)},getVexByID:function(b){return c.getAllVexes().filter(function(){return a(this).data().vex.id===b})},close:function(a){var b;if(!a){if(b=c.getAllVexes().last(),!b.length)return!1;a=b.data().vex.id}return c.closeByID(a)},closeAll:function(){var b;return b=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=b?b.length:void 0)?(a.each(b.reverse(),function(a,b){return c.closeByID(b)}),!0):!1},closeByID:function(d){var e,f,g,h,i;return f=c.getVexByID(d),f.length?(e=f.data().vex.$vex,i=a.extend({},f.data().vex),g=function(){return i.beforeClose?i.beforeClose(f,i):void 0},h=function(){return f.trigger("vexClose",i),e.remove(),i.afterClose?i.afterClose(f,i):void 0},b?(g(),e.unbind(c.animationEndEvent).bind(c.animationEndEvent,function(){return h()}).addClass(c.baseClassNames.closing)):(g(),h()),!0):void 0},closeByEscape:function(){var b,d,e;return e=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=e?e.length:void 0)?(d=Math.max.apply(Math,e),b=c.getVexByID(d),b.data().vex.escapeButtonCloses!==!0?!1:c.closeByID(d)):!1},hideLoading:function(){return a(".vex-loading-spinner").remove()},showLoading:function(){return c.hideLoading(),a("body").append('<div class="vex-loading-spinner '+c.defaultOptions.className+'"></div>')}}},"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):window.vex=a(jQuery)}).call(this),function(){var a;a=function(a,b){var c,d;return null==b?a.error("Vex is required to use vex.dialog"):(c=function(b){var c;return c={},a.each(b.serializeArray(),function(){return c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c},d={},d.buttons={YES:{text:"OK",type:"submit",className:"vex-dialog-button-primary"},NO:{text:"Cancel",type:"button",className:"vex-dialog-button-secondary",click:function(a){return a.data().vex.value=!1,b.close(a.data().vex.id)}}},d.defaultOptions={callback:function(a){return console&&console.log?console.log("Vex dialog callback:",a):void 0},afterOpen:function(){},message:"Message",input:'<input name="vex" type="hidden" value="_vex-empty-value" />',value:!1,buttons:[d.buttons.YES,d.buttons.NO],showCloseButton:!1,onSubmit:function(e){var f,g;return f=a(this),g=f.parent(),e.preventDefault(),e.stopPropagation(),g.data().vex.value=d.getFormValueOnSubmit(c(f)),b.close(g.data().vex.id)},focusFirstInput:!0},d.defaultAlertOptions={message:"Alert",buttons:[d.buttons.YES]},d.defaultConfirmOptions={message:"Confirm"},d.open=function(c){var e;return c=a.extend({},b.defaultOptions,d.defaultOptions,c),c.content=d.buildDialogForm(c),c.beforeClose=function(a){return c.callback(a.data().vex.value)},e=b.open(c),c.focusFirstInput&&e.find('input[type="text"], input[type="submit"]').first().focus(),e},d.alert=function(b){return"string"==typeof b&&(b={message:b}),b=a.extend({},d.defaultAlertOptions,b),d.open(b)},d.confirm=function(b){return"string"==typeof b?a.error("dialog.confirm(options) requires options.callback."):(b=a.extend({},d.defaultConfirmOptions,b),d.open(b))},d.prompt=function(b){var c;return"string"==typeof b?a.error("dialog.prompt(options) requires options.callback."):(c={message:'<label for="vex">'+(b.label||"Prompt:")+"</label>",input:'<input name="vex" type="text" class="vex-dialog-prompt-input" placeholder="'+(b.placeholder||"")+'" />'},b=a.extend({},c,b),d.open(b))},d.buildDialogForm=function(b){var c,e,f;return c=a('<form class="vex-dialog-form" />'),f=a('<div class="vex-dialog-message" />'),e=a('<div class="vex-dialog-input" />'),c.append(f.append(b.message)).append(e.append(b.input)).append(d.buttonsToDOM(b.buttons)).bind("submit.vex",b.onSubmit),c},d.getFormValueOnSubmit=function(a){return a.vex?"_vex-empty-value"===a.vex?!0:a.vex:a},d.buttonsToDOM=function(c){var d;return d=a('<div class="vex-dialog-buttons" />'),a.each(c,function(e,f){return d.append(a('<input type="'+f.type+'" />').val(f.text).addClass(f.className+" vex-dialog-button "+(0===e?"vex-first ":"")+(e===c.length-1?"vex-last ":"")).bind("click.vex",function(c){return f.click?f.click(a(this).parents("."+b.baseClassNames.content),c):void 0}))}),d},d)},"function"==typeof define&&define.amd?define(["jquery","vex"],a):"object"==typeof exports?module.exports=a(require("jquery"),require("vex")):window.vex.dialog=a(window.jQuery,window.vex)}.call(this);
1
+ /*! vex.js, vex.dialog.js 1.3.3 */
2
+ (function(){var a;a=function(a){var b,c;return b=!1,a(function(){var d;return d=(document.body||document.documentElement).style,b=void 0!==d.animation||void 0!==d.WebkitAnimation||void 0!==d.MozAnimation||void 0!==d.MsAnimation||void 0!==d.OAnimation,a(window).bind("keyup.vex",function(a){return 27===a.keyCode?c.closeByEscape():void 0})}),c={globalID:1,animationEndEvent:"animationend webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend",baseClassNames:{vex:"vex",content:"vex-content",overlay:"vex-overlay",close:"vex-close",closing:"vex-closing",open:"vex-open"},defaultOptions:{content:"",showCloseButton:!0,escapeButtonCloses:!0,overlayClosesOnClick:!0,appendLocation:"body",className:"",css:{},overlayClassName:"",overlayCSS:{},contentClassName:"",contentCSS:{},closeClassName:"",closeCSS:{}},open:function(b){return b=a.extend({},c.defaultOptions,b),b.id=c.globalID,c.globalID+=1,b.$vex=a("<div>").addClass(c.baseClassNames.vex).addClass(b.className).css(b.css).data({vex:b}),b.$vexOverlay=a("<div>").addClass(c.baseClassNames.overlay).addClass(b.overlayClassName).css(b.overlayCSS).data({vex:b}),b.overlayClosesOnClick&&b.$vexOverlay.bind("click.vex",function(b){return b.target===this?c.close(a(this).data().vex.id):void 0}),b.$vex.append(b.$vexOverlay),b.$vexContent=a("<div>").addClass(c.baseClassNames.content).addClass(b.contentClassName).css(b.contentCSS).append(b.content).data({vex:b}),b.$vex.append(b.$vexContent),b.showCloseButton&&(b.$closeButton=a("<div>").addClass(c.baseClassNames.close).addClass(b.closeClassName).css(b.closeCSS).data({vex:b}).bind("click.vex",function(){return c.close(a(this).data().vex.id)}),b.$vexContent.append(b.$closeButton)),a(b.appendLocation).append(b.$vex),c.setupBodyClassName(b.$vex),b.afterOpen&&b.afterOpen(b.$vexContent,b),setTimeout(function(){return b.$vexContent.trigger("vexOpen",b)},0),b.$vexContent},getAllVexes:function(){return a("."+c.baseClassNames.vex+':not(".'+c.baseClassNames.closing+'") .'+c.baseClassNames.content)},getVexByID:function(b){return c.getAllVexes().filter(function(){return a(this).data().vex.id===b})},close:function(a){var b;if(!a){if(b=c.getAllVexes().last(),!b.length)return!1;a=b.data().vex.id}return c.closeByID(a)},closeAll:function(){var b;return b=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=b?b.length:void 0)?(a.each(b.reverse(),function(a,b){return c.closeByID(b)}),!0):!1},closeByID:function(d){var e,f,g,h,i;return f=c.getVexByID(d),f.length?(e=f.data().vex.$vex,i=a.extend({},f.data().vex),g=function(){return i.beforeClose?i.beforeClose(f,i):void 0},h=function(){return f.trigger("vexClose",i),e.remove(),i.afterClose?i.afterClose(f,i):void 0},b?(g(),e.unbind(c.animationEndEvent).bind(c.animationEndEvent,function(){return h()}).addClass(c.baseClassNames.closing)):(g(),h()),!0):void 0},closeByEscape:function(){var b,d,e;return e=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=e?e.length:void 0)?(d=Math.max.apply(Math,e),b=c.getVexByID(d),b.data().vex.escapeButtonCloses!==!0?!1:c.closeByID(d)):!1},setupBodyClassName:function(b){return b.bind("vexOpen.vex",function(){return a("body").addClass(c.baseClassNames.open)}).bind("vexClose.vex",function(){return c.getAllVexes().length?void 0:a("body").removeClass(c.baseClassNames.open)})},hideLoading:function(){return a(".vex-loading-spinner").remove()},showLoading:function(){return c.hideLoading(),a("body").append('<div class="vex-loading-spinner '+c.defaultOptions.className+'"></div>')}}},"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):window.vex=a(jQuery)}).call(this),function(){var a;a=function(a,b){var c,d;return null==b?a.error("Vex is required to use vex.dialog"):(c=function(b){var c;return c={},a.each(b.serializeArray(),function(){return c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c},d={},d.buttons={YES:{text:"OK",type:"submit",className:"vex-dialog-button-primary"},NO:{text:"Cancel",type:"button",className:"vex-dialog-button-secondary",click:function(a){return a.data().vex.value=!1,b.close(a.data().vex.id)}}},d.defaultOptions={callback:function(a){return console&&console.log?console.log("Vex dialog callback:",a):void 0},afterOpen:function(){},message:"Message",input:'<input name="vex" type="hidden" value="_vex-empty-value" />',value:!1,buttons:[d.buttons.YES,d.buttons.NO],showCloseButton:!1,onSubmit:function(e){var f,g;return f=a(this),g=f.parent(),e.preventDefault(),e.stopPropagation(),g.data().vex.value=d.getFormValueOnSubmit(c(f)),b.close(g.data().vex.id)},focusFirstInput:!0},d.defaultAlertOptions={message:"Alert",buttons:[d.buttons.YES]},d.defaultConfirmOptions={message:"Confirm"},d.open=function(c){var e;return c=a.extend({},b.defaultOptions,d.defaultOptions,c),c.content=d.buildDialogForm(c),c.beforeClose=function(a){return c.callback(a.data().vex.value)},e=b.open(c),c.focusFirstInput&&e.find('input[type="text"], input[type="submit"]').first().focus(),e},d.alert=function(b){return"string"==typeof b&&(b={message:b}),b=a.extend({},d.defaultAlertOptions,b),d.open(b)},d.confirm=function(b){return"string"==typeof b?a.error("dialog.confirm(options) requires options.callback."):(b=a.extend({},d.defaultConfirmOptions,b),d.open(b))},d.prompt=function(b){var c;return"string"==typeof b?a.error("dialog.prompt(options) requires options.callback."):(c={message:'<label for="vex">'+(b.label||"Prompt:")+"</label>",input:'<input name="vex" type="text" class="vex-dialog-prompt-input" placeholder="'+(b.placeholder||"")+'" />'},b=a.extend({},c,b),d.open(b))},d.buildDialogForm=function(b){var c,e,f;return c=a('<form class="vex-dialog-form" />'),f=a('<div class="vex-dialog-message" />'),e=a('<div class="vex-dialog-input" />'),c.append(f.append(b.message)).append(e.append(b.input)).append(d.buttonsToDOM(b.buttons)).bind("submit.vex",b.onSubmit),c},d.getFormValueOnSubmit=function(a){return a.vex?"_vex-empty-value"===a.vex?!0:a.vex:a},d.buttonsToDOM=function(c){var d;return d=a('<div class="vex-dialog-buttons" />'),a.each(c,function(e,f){return d.append(a('<input type="'+f.type+'" />').val(f.text).addClass(f.className+" vex-dialog-button "+(0===e?"vex-first ":"")+(e===c.length-1?"vex-last ":"")).bind("click.vex",function(c){return f.click?f.click(a(this).parents("."+b.baseClassNames.content),c):void 0}))}),d},d)},"function"==typeof define&&define.amd?define(["jquery","vex"],a):"object"==typeof exports?module.exports=a(require("jquery"),require("vex")):window.vex.dialog=a(window.jQuery,window.vex)}.call(this);
@@ -1,2 +1,2 @@
1
- /*! vex.dialog.js 1.3.1 */
1
+ /*! vex.dialog.js 1.3.3 */
2
2
  (function(){var a;a=function(a,b){var c,d;return null==b?a.error("Vex is required to use vex.dialog"):(c=function(b){var c;return c={},a.each(b.serializeArray(),function(){return c[this.name]?(c[this.name].push||(c[this.name]=[c[this.name]]),c[this.name].push(this.value||"")):c[this.name]=this.value||""}),c},d={},d.buttons={YES:{text:"OK",type:"submit",className:"vex-dialog-button-primary"},NO:{text:"Cancel",type:"button",className:"vex-dialog-button-secondary",click:function(a){return a.data().vex.value=!1,b.close(a.data().vex.id)}}},d.defaultOptions={callback:function(a){return console&&console.log?console.log("Vex dialog callback:",a):void 0},afterOpen:function(){},message:"Message",input:'<input name="vex" type="hidden" value="_vex-empty-value" />',value:!1,buttons:[d.buttons.YES,d.buttons.NO],showCloseButton:!1,onSubmit:function(e){var f,g;return f=a(this),g=f.parent(),e.preventDefault(),e.stopPropagation(),g.data().vex.value=d.getFormValueOnSubmit(c(f)),b.close(g.data().vex.id)},focusFirstInput:!0},d.defaultAlertOptions={message:"Alert",buttons:[d.buttons.YES]},d.defaultConfirmOptions={message:"Confirm"},d.open=function(c){var e;return c=a.extend({},b.defaultOptions,d.defaultOptions,c),c.content=d.buildDialogForm(c),c.beforeClose=function(a){return c.callback(a.data().vex.value)},e=b.open(c),c.focusFirstInput&&e.find('input[type="text"], input[type="submit"]').first().focus(),e},d.alert=function(b){return"string"==typeof b&&(b={message:b}),b=a.extend({},d.defaultAlertOptions,b),d.open(b)},d.confirm=function(b){return"string"==typeof b?a.error("dialog.confirm(options) requires options.callback."):(b=a.extend({},d.defaultConfirmOptions,b),d.open(b))},d.prompt=function(b){var c;return"string"==typeof b?a.error("dialog.prompt(options) requires options.callback."):(c={message:'<label for="vex">'+(b.label||"Prompt:")+"</label>",input:'<input name="vex" type="text" class="vex-dialog-prompt-input" placeholder="'+(b.placeholder||"")+'" />'},b=a.extend({},c,b),d.open(b))},d.buildDialogForm=function(b){var c,e,f;return c=a('<form class="vex-dialog-form" />'),f=a('<div class="vex-dialog-message" />'),e=a('<div class="vex-dialog-input" />'),c.append(f.append(b.message)).append(e.append(b.input)).append(d.buttonsToDOM(b.buttons)).bind("submit.vex",b.onSubmit),c},d.getFormValueOnSubmit=function(a){return a.vex?"_vex-empty-value"===a.vex?!0:a.vex:a},d.buttonsToDOM=function(c){var d;return d=a('<div class="vex-dialog-buttons" />'),a.each(c,function(e,f){return d.append(a('<input type="'+f.type+'" />').val(f.text).addClass(f.className+" vex-dialog-button "+(0===e?"vex-first ":"")+(e===c.length-1?"vex-last ":"")).bind("click.vex",function(c){return f.click?f.click(a(this).parents("."+b.baseClassNames.content),c):void 0}))}),d},d)},"function"==typeof define&&define.amd?define(["jquery","vex"],a):"object"==typeof exports?module.exports=a(require("jquery"),require("vex")):window.vex.dialog=a(window.jQuery,window.vex)}).call(this);
@@ -22,7 +22,8 @@
22
22
  content: 'vex-content',
23
23
  overlay: 'vex-overlay',
24
24
  close: 'vex-close',
25
- closing: 'vex-closing'
25
+ closing: 'vex-closing',
26
+ open: 'vex-open'
26
27
  },
27
28
  defaultOptions: {
28
29
  content: '',
@@ -71,6 +72,7 @@
71
72
  options.$vexContent.append(options.$closeButton);
72
73
  }
73
74
  $(options.appendLocation).append(options.$vex);
75
+ vex.setupBodyClassName(options.$vex);
74
76
  if (options.afterOpen) {
75
77
  options.afterOpen(options.$vexContent, options);
76
78
  }
@@ -157,6 +159,15 @@
157
159
  }
158
160
  return vex.closeByID(id);
159
161
  },
162
+ setupBodyClassName: function($vex) {
163
+ return $vex.bind('vexOpen.vex', function() {
164
+ return $('body').addClass(vex.baseClassNames.open);
165
+ }).bind('vexClose.vex', function() {
166
+ if (!vex.getAllVexes().length) {
167
+ return $('body').removeClass(vex.baseClassNames.open);
168
+ }
169
+ });
170
+ },
160
171
  hideLoading: function() {
161
172
  return $('.vex-loading-spinner').remove();
162
173
  },
@@ -1,2 +1,2 @@
1
- /*! vex.js 1.3.1 */
2
- (function(){var a;a=function(a){var b,c;return b=!1,a(function(){var d;return d=(document.body||document.documentElement).style,b=void 0!==d.animation||void 0!==d.WebkitAnimation||void 0!==d.MozAnimation||void 0!==d.MsAnimation||void 0!==d.OAnimation,a(window).bind("keyup.vex",function(a){return 27===a.keyCode?c.closeByEscape():void 0})}),c={globalID:1,animationEndEvent:"animationend webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend",baseClassNames:{vex:"vex",content:"vex-content",overlay:"vex-overlay",close:"vex-close",closing:"vex-closing"},defaultOptions:{content:"",showCloseButton:!0,escapeButtonCloses:!0,overlayClosesOnClick:!0,appendLocation:"body",className:"",css:{},overlayClassName:"",overlayCSS:{},contentClassName:"",contentCSS:{},closeClassName:"",closeCSS:{}},open:function(b){return b=a.extend({},c.defaultOptions,b),b.id=c.globalID,c.globalID+=1,b.$vex=a("<div>").addClass(c.baseClassNames.vex).addClass(b.className).css(b.css).data({vex:b}),b.$vexOverlay=a("<div>").addClass(c.baseClassNames.overlay).addClass(b.overlayClassName).css(b.overlayCSS).data({vex:b}),b.overlayClosesOnClick&&b.$vexOverlay.bind("click.vex",function(b){return b.target===this?c.close(a(this).data().vex.id):void 0}),b.$vex.append(b.$vexOverlay),b.$vexContent=a("<div>").addClass(c.baseClassNames.content).addClass(b.contentClassName).css(b.contentCSS).append(b.content).data({vex:b}),b.$vex.append(b.$vexContent),b.showCloseButton&&(b.$closeButton=a("<div>").addClass(c.baseClassNames.close).addClass(b.closeClassName).css(b.closeCSS).data({vex:b}).bind("click.vex",function(){return c.close(a(this).data().vex.id)}),b.$vexContent.append(b.$closeButton)),a(b.appendLocation).append(b.$vex),b.afterOpen&&b.afterOpen(b.$vexContent,b),setTimeout(function(){return b.$vexContent.trigger("vexOpen",b)},0),b.$vexContent},getAllVexes:function(){return a("."+c.baseClassNames.vex+':not(".'+c.baseClassNames.closing+'") .'+c.baseClassNames.content)},getVexByID:function(b){return c.getAllVexes().filter(function(){return a(this).data().vex.id===b})},close:function(a){var b;if(!a){if(b=c.getAllVexes().last(),!b.length)return!1;a=b.data().vex.id}return c.closeByID(a)},closeAll:function(){var b;return b=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=b?b.length:void 0)?(a.each(b.reverse(),function(a,b){return c.closeByID(b)}),!0):!1},closeByID:function(d){var e,f,g,h,i;return f=c.getVexByID(d),f.length?(e=f.data().vex.$vex,i=a.extend({},f.data().vex),g=function(){return i.beforeClose?i.beforeClose(f,i):void 0},h=function(){return f.trigger("vexClose",i),e.remove(),i.afterClose?i.afterClose(f,i):void 0},b?(g(),e.unbind(c.animationEndEvent).bind(c.animationEndEvent,function(){return h()}).addClass(c.baseClassNames.closing)):(g(),h()),!0):void 0},closeByEscape:function(){var b,d,e;return e=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=e?e.length:void 0)?(d=Math.max.apply(Math,e),b=c.getVexByID(d),b.data().vex.escapeButtonCloses!==!0?!1:c.closeByID(d)):!1},hideLoading:function(){return a(".vex-loading-spinner").remove()},showLoading:function(){return c.hideLoading(),a("body").append('<div class="vex-loading-spinner '+c.defaultOptions.className+'"></div>')}}},"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):window.vex=a(jQuery)}).call(this);
1
+ /*! vex.js 1.3.3 */
2
+ (function(){var a;a=function(a){var b,c;return b=!1,a(function(){var d;return d=(document.body||document.documentElement).style,b=void 0!==d.animation||void 0!==d.WebkitAnimation||void 0!==d.MozAnimation||void 0!==d.MsAnimation||void 0!==d.OAnimation,a(window).bind("keyup.vex",function(a){return 27===a.keyCode?c.closeByEscape():void 0})}),c={globalID:1,animationEndEvent:"animationend webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend",baseClassNames:{vex:"vex",content:"vex-content",overlay:"vex-overlay",close:"vex-close",closing:"vex-closing",open:"vex-open"},defaultOptions:{content:"",showCloseButton:!0,escapeButtonCloses:!0,overlayClosesOnClick:!0,appendLocation:"body",className:"",css:{},overlayClassName:"",overlayCSS:{},contentClassName:"",contentCSS:{},closeClassName:"",closeCSS:{}},open:function(b){return b=a.extend({},c.defaultOptions,b),b.id=c.globalID,c.globalID+=1,b.$vex=a("<div>").addClass(c.baseClassNames.vex).addClass(b.className).css(b.css).data({vex:b}),b.$vexOverlay=a("<div>").addClass(c.baseClassNames.overlay).addClass(b.overlayClassName).css(b.overlayCSS).data({vex:b}),b.overlayClosesOnClick&&b.$vexOverlay.bind("click.vex",function(b){return b.target===this?c.close(a(this).data().vex.id):void 0}),b.$vex.append(b.$vexOverlay),b.$vexContent=a("<div>").addClass(c.baseClassNames.content).addClass(b.contentClassName).css(b.contentCSS).append(b.content).data({vex:b}),b.$vex.append(b.$vexContent),b.showCloseButton&&(b.$closeButton=a("<div>").addClass(c.baseClassNames.close).addClass(b.closeClassName).css(b.closeCSS).data({vex:b}).bind("click.vex",function(){return c.close(a(this).data().vex.id)}),b.$vexContent.append(b.$closeButton)),a(b.appendLocation).append(b.$vex),c.setupBodyClassName(b.$vex),b.afterOpen&&b.afterOpen(b.$vexContent,b),setTimeout(function(){return b.$vexContent.trigger("vexOpen",b)},0),b.$vexContent},getAllVexes:function(){return a("."+c.baseClassNames.vex+':not(".'+c.baseClassNames.closing+'") .'+c.baseClassNames.content)},getVexByID:function(b){return c.getAllVexes().filter(function(){return a(this).data().vex.id===b})},close:function(a){var b;if(!a){if(b=c.getAllVexes().last(),!b.length)return!1;a=b.data().vex.id}return c.closeByID(a)},closeAll:function(){var b;return b=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=b?b.length:void 0)?(a.each(b.reverse(),function(a,b){return c.closeByID(b)}),!0):!1},closeByID:function(d){var e,f,g,h,i;return f=c.getVexByID(d),f.length?(e=f.data().vex.$vex,i=a.extend({},f.data().vex),g=function(){return i.beforeClose?i.beforeClose(f,i):void 0},h=function(){return f.trigger("vexClose",i),e.remove(),i.afterClose?i.afterClose(f,i):void 0},b?(g(),e.unbind(c.animationEndEvent).bind(c.animationEndEvent,function(){return h()}).addClass(c.baseClassNames.closing)):(g(),h()),!0):void 0},closeByEscape:function(){var b,d,e;return e=c.getAllVexes().map(function(){return a(this).data().vex.id}).toArray(),(null!=e?e.length:void 0)?(d=Math.max.apply(Math,e),b=c.getVexByID(d),b.data().vex.escapeButtonCloses!==!0?!1:c.closeByID(d)):!1},setupBodyClassName:function(b){return b.bind("vexOpen.vex",function(){return a("body").addClass(c.baseClassNames.open)}).bind("vexClose.vex",function(){return c.getAllVexes().length?void 0:a("body").removeClass(c.baseClassNames.open)})},hideLoading:function(){return a(".vex-loading-spinner").remove()},showLoading:function(){return c.hideLoading(),a("body").append('<div class="vex-loading-spinner '+c.defaultOptions.className+'"></div>')}}},"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):window.vex=a(jQuery)}).call(this);
@@ -219,21 +219,21 @@
219
219
  }
220
220
 
221
221
  @keyframes vex-pulse {
222
- /* line 86, ../sass/_keyframes.sass */
222
+ /* line 104, ../sass/_keyframes.sass */
223
223
  0% {
224
224
  -webkit-box-shadow: inset 0 0 0 300px transparent;
225
225
  -moz-box-shadow: inset 0 0 0 300px transparent;
226
226
  box-shadow: inset 0 0 0 300px transparent;
227
227
  }
228
228
 
229
- /* line 88, ../sass/_keyframes.sass */
229
+ /* line 106, ../sass/_keyframes.sass */
230
230
  70% {
231
231
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
232
232
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
233
233
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
234
234
  }
235
235
 
236
- /* line 90, ../sass/_keyframes.sass */
236
+ /* line 108, ../sass/_keyframes.sass */
237
237
  100% {
238
238
  -webkit-box-shadow: inset 0 0 0 300px transparent;
239
239
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -242,21 +242,21 @@
242
242
  }
243
243
 
244
244
  @-webkit-keyframes vex-pulse {
245
- /* line 86, ../sass/_keyframes.sass */
245
+ /* line 104, ../sass/_keyframes.sass */
246
246
  0% {
247
247
  -webkit-box-shadow: inset 0 0 0 300px transparent;
248
248
  -moz-box-shadow: inset 0 0 0 300px transparent;
249
249
  box-shadow: inset 0 0 0 300px transparent;
250
250
  }
251
251
 
252
- /* line 88, ../sass/_keyframes.sass */
252
+ /* line 106, ../sass/_keyframes.sass */
253
253
  70% {
254
254
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
255
255
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
256
256
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
257
257
  }
258
258
 
259
- /* line 90, ../sass/_keyframes.sass */
259
+ /* line 108, ../sass/_keyframes.sass */
260
260
  100% {
261
261
  -webkit-box-shadow: inset 0 0 0 300px transparent;
262
262
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -265,21 +265,21 @@
265
265
  }
266
266
 
267
267
  @-moz-keyframes vex-pulse {
268
- /* line 86, ../sass/_keyframes.sass */
268
+ /* line 104, ../sass/_keyframes.sass */
269
269
  0% {
270
270
  -webkit-box-shadow: inset 0 0 0 300px transparent;
271
271
  -moz-box-shadow: inset 0 0 0 300px transparent;
272
272
  box-shadow: inset 0 0 0 300px transparent;
273
273
  }
274
274
 
275
- /* line 88, ../sass/_keyframes.sass */
275
+ /* line 106, ../sass/_keyframes.sass */
276
276
  70% {
277
277
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
278
278
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
279
279
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
280
280
  }
281
281
 
282
- /* line 90, ../sass/_keyframes.sass */
282
+ /* line 108, ../sass/_keyframes.sass */
283
283
  100% {
284
284
  -webkit-box-shadow: inset 0 0 0 300px transparent;
285
285
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -288,21 +288,21 @@
288
288
  }
289
289
 
290
290
  @-ms-keyframes vex-pulse {
291
- /* line 86, ../sass/_keyframes.sass */
291
+ /* line 104, ../sass/_keyframes.sass */
292
292
  0% {
293
293
  -webkit-box-shadow: inset 0 0 0 300px transparent;
294
294
  -moz-box-shadow: inset 0 0 0 300px transparent;
295
295
  box-shadow: inset 0 0 0 300px transparent;
296
296
  }
297
297
 
298
- /* line 88, ../sass/_keyframes.sass */
298
+ /* line 106, ../sass/_keyframes.sass */
299
299
  70% {
300
300
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
301
301
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
302
302
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
303
303
  }
304
304
 
305
- /* line 90, ../sass/_keyframes.sass */
305
+ /* line 108, ../sass/_keyframes.sass */
306
306
  100% {
307
307
  -webkit-box-shadow: inset 0 0 0 300px transparent;
308
308
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -311,21 +311,21 @@
311
311
  }
312
312
 
313
313
  @-o-keyframes vex-pulse {
314
- /* line 86, ../sass/_keyframes.sass */
314
+ /* line 104, ../sass/_keyframes.sass */
315
315
  0% {
316
316
  -webkit-box-shadow: inset 0 0 0 300px transparent;
317
317
  -moz-box-shadow: inset 0 0 0 300px transparent;
318
318
  box-shadow: inset 0 0 0 300px transparent;
319
319
  }
320
320
 
321
- /* line 88, ../sass/_keyframes.sass */
321
+ /* line 106, ../sass/_keyframes.sass */
322
322
  70% {
323
323
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
324
324
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
325
325
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
326
326
  }
327
327
 
328
- /* line 90, ../sass/_keyframes.sass */
328
+ /* line 108, ../sass/_keyframes.sass */
329
329
  100% {
330
330
  -webkit-box-shadow: inset 0 0 0 300px transparent;
331
331
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -1,5 +1,5 @@
1
1
  @keyframes vex-flipin-horizontal {
2
- /* line 57, ../sass/_keyframes.sass */
2
+ /* line 75, ../sass/_keyframes.sass */
3
3
  0% {
4
4
  opacity: 0;
5
5
  transform: rotateY(-90deg);
@@ -9,7 +9,7 @@
9
9
  -o-transform: rotateY(-90deg);
10
10
  }
11
11
 
12
- /* line 60, ../sass/_keyframes.sass */
12
+ /* line 78, ../sass/_keyframes.sass */
13
13
  100% {
14
14
  opacity: 1;
15
15
  transform: rotateY(0deg);
@@ -21,7 +21,7 @@
21
21
  }
22
22
 
23
23
  @-webkit-keyframes vex-flipin-horizontal {
24
- /* line 57, ../sass/_keyframes.sass */
24
+ /* line 75, ../sass/_keyframes.sass */
25
25
  0% {
26
26
  opacity: 0;
27
27
  transform: rotateY(-90deg);
@@ -31,7 +31,7 @@
31
31
  -o-transform: rotateY(-90deg);
32
32
  }
33
33
 
34
- /* line 60, ../sass/_keyframes.sass */
34
+ /* line 78, ../sass/_keyframes.sass */
35
35
  100% {
36
36
  opacity: 1;
37
37
  transform: rotateY(0deg);
@@ -43,7 +43,7 @@
43
43
  }
44
44
 
45
45
  @-moz-keyframes vex-flipin-horizontal {
46
- /* line 57, ../sass/_keyframes.sass */
46
+ /* line 75, ../sass/_keyframes.sass */
47
47
  0% {
48
48
  opacity: 0;
49
49
  transform: rotateY(-90deg);
@@ -53,7 +53,7 @@
53
53
  -o-transform: rotateY(-90deg);
54
54
  }
55
55
 
56
- /* line 60, ../sass/_keyframes.sass */
56
+ /* line 78, ../sass/_keyframes.sass */
57
57
  100% {
58
58
  opacity: 1;
59
59
  transform: rotateY(0deg);
@@ -65,7 +65,7 @@
65
65
  }
66
66
 
67
67
  @-ms-keyframes vex-flipin-horizontal {
68
- /* line 57, ../sass/_keyframes.sass */
68
+ /* line 75, ../sass/_keyframes.sass */
69
69
  0% {
70
70
  opacity: 0;
71
71
  transform: rotateY(-90deg);
@@ -75,7 +75,7 @@
75
75
  -o-transform: rotateY(-90deg);
76
76
  }
77
77
 
78
- /* line 60, ../sass/_keyframes.sass */
78
+ /* line 78, ../sass/_keyframes.sass */
79
79
  100% {
80
80
  opacity: 1;
81
81
  transform: rotateY(0deg);
@@ -87,7 +87,7 @@
87
87
  }
88
88
 
89
89
  @-o-keyframes vex-flipin-horizontal {
90
- /* line 57, ../sass/_keyframes.sass */
90
+ /* line 75, ../sass/_keyframes.sass */
91
91
  0% {
92
92
  opacity: 0;
93
93
  transform: rotateY(-90deg);
@@ -97,7 +97,7 @@
97
97
  -o-transform: rotateY(-90deg);
98
98
  }
99
99
 
100
- /* line 60, ../sass/_keyframes.sass */
100
+ /* line 78, ../sass/_keyframes.sass */
101
101
  100% {
102
102
  opacity: 1;
103
103
  transform: rotateY(0deg);
@@ -109,7 +109,7 @@
109
109
  }
110
110
 
111
111
  @keyframes vex-flipout-horizontal {
112
- /* line 66, ../sass/_keyframes.sass */
112
+ /* line 84, ../sass/_keyframes.sass */
113
113
  0% {
114
114
  opacity: 1;
115
115
  transform: rotateY(0deg);
@@ -119,7 +119,7 @@
119
119
  -o-transform: rotateY(0deg);
120
120
  }
121
121
 
122
- /* line 69, ../sass/_keyframes.sass */
122
+ /* line 87, ../sass/_keyframes.sass */
123
123
  100% {
124
124
  opacity: 0;
125
125
  transform: rotateY(90deg);
@@ -131,7 +131,7 @@
131
131
  }
132
132
 
133
133
  @-webkit-keyframes vex-flipout-horizontal {
134
- /* line 66, ../sass/_keyframes.sass */
134
+ /* line 84, ../sass/_keyframes.sass */
135
135
  0% {
136
136
  opacity: 1;
137
137
  transform: rotateY(0deg);
@@ -141,7 +141,7 @@
141
141
  -o-transform: rotateY(0deg);
142
142
  }
143
143
 
144
- /* line 69, ../sass/_keyframes.sass */
144
+ /* line 87, ../sass/_keyframes.sass */
145
145
  100% {
146
146
  opacity: 0;
147
147
  transform: rotateY(90deg);
@@ -153,7 +153,7 @@
153
153
  }
154
154
 
155
155
  @-moz-keyframes vex-flipout-horizontal {
156
- /* line 66, ../sass/_keyframes.sass */
156
+ /* line 84, ../sass/_keyframes.sass */
157
157
  0% {
158
158
  opacity: 1;
159
159
  transform: rotateY(0deg);
@@ -163,7 +163,7 @@
163
163
  -o-transform: rotateY(0deg);
164
164
  }
165
165
 
166
- /* line 69, ../sass/_keyframes.sass */
166
+ /* line 87, ../sass/_keyframes.sass */
167
167
  100% {
168
168
  opacity: 0;
169
169
  transform: rotateY(90deg);
@@ -175,7 +175,7 @@
175
175
  }
176
176
 
177
177
  @-ms-keyframes vex-flipout-horizontal {
178
- /* line 66, ../sass/_keyframes.sass */
178
+ /* line 84, ../sass/_keyframes.sass */
179
179
  0% {
180
180
  opacity: 1;
181
181
  transform: rotateY(0deg);
@@ -185,7 +185,7 @@
185
185
  -o-transform: rotateY(0deg);
186
186
  }
187
187
 
188
- /* line 69, ../sass/_keyframes.sass */
188
+ /* line 87, ../sass/_keyframes.sass */
189
189
  100% {
190
190
  opacity: 0;
191
191
  transform: rotateY(90deg);
@@ -197,7 +197,7 @@
197
197
  }
198
198
 
199
199
  @-o-keyframes vex-flipout-horizontal {
200
- /* line 66, ../sass/_keyframes.sass */
200
+ /* line 84, ../sass/_keyframes.sass */
201
201
  0% {
202
202
  opacity: 1;
203
203
  transform: rotateY(0deg);
@@ -207,7 +207,7 @@
207
207
  -o-transform: rotateY(0deg);
208
208
  }
209
209
 
210
- /* line 69, ../sass/_keyframes.sass */
210
+ /* line 87, ../sass/_keyframes.sass */
211
211
  100% {
212
212
  opacity: 0;
213
213
  transform: rotateY(90deg);
@@ -219,21 +219,21 @@
219
219
  }
220
220
 
221
221
  @keyframes vex-pulse {
222
- /* line 86, ../sass/_keyframes.sass */
222
+ /* line 104, ../sass/_keyframes.sass */
223
223
  0% {
224
224
  -webkit-box-shadow: inset 0 0 0 300px transparent;
225
225
  -moz-box-shadow: inset 0 0 0 300px transparent;
226
226
  box-shadow: inset 0 0 0 300px transparent;
227
227
  }
228
228
 
229
- /* line 88, ../sass/_keyframes.sass */
229
+ /* line 106, ../sass/_keyframes.sass */
230
230
  70% {
231
231
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
232
232
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
233
233
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
234
234
  }
235
235
 
236
- /* line 90, ../sass/_keyframes.sass */
236
+ /* line 108, ../sass/_keyframes.sass */
237
237
  100% {
238
238
  -webkit-box-shadow: inset 0 0 0 300px transparent;
239
239
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -242,21 +242,21 @@
242
242
  }
243
243
 
244
244
  @-webkit-keyframes vex-pulse {
245
- /* line 86, ../sass/_keyframes.sass */
245
+ /* line 104, ../sass/_keyframes.sass */
246
246
  0% {
247
247
  -webkit-box-shadow: inset 0 0 0 300px transparent;
248
248
  -moz-box-shadow: inset 0 0 0 300px transparent;
249
249
  box-shadow: inset 0 0 0 300px transparent;
250
250
  }
251
251
 
252
- /* line 88, ../sass/_keyframes.sass */
252
+ /* line 106, ../sass/_keyframes.sass */
253
253
  70% {
254
254
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
255
255
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
256
256
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
257
257
  }
258
258
 
259
- /* line 90, ../sass/_keyframes.sass */
259
+ /* line 108, ../sass/_keyframes.sass */
260
260
  100% {
261
261
  -webkit-box-shadow: inset 0 0 0 300px transparent;
262
262
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -265,21 +265,21 @@
265
265
  }
266
266
 
267
267
  @-moz-keyframes vex-pulse {
268
- /* line 86, ../sass/_keyframes.sass */
268
+ /* line 104, ../sass/_keyframes.sass */
269
269
  0% {
270
270
  -webkit-box-shadow: inset 0 0 0 300px transparent;
271
271
  -moz-box-shadow: inset 0 0 0 300px transparent;
272
272
  box-shadow: inset 0 0 0 300px transparent;
273
273
  }
274
274
 
275
- /* line 88, ../sass/_keyframes.sass */
275
+ /* line 106, ../sass/_keyframes.sass */
276
276
  70% {
277
277
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
278
278
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
279
279
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
280
280
  }
281
281
 
282
- /* line 90, ../sass/_keyframes.sass */
282
+ /* line 108, ../sass/_keyframes.sass */
283
283
  100% {
284
284
  -webkit-box-shadow: inset 0 0 0 300px transparent;
285
285
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -288,21 +288,21 @@
288
288
  }
289
289
 
290
290
  @-ms-keyframes vex-pulse {
291
- /* line 86, ../sass/_keyframes.sass */
291
+ /* line 104, ../sass/_keyframes.sass */
292
292
  0% {
293
293
  -webkit-box-shadow: inset 0 0 0 300px transparent;
294
294
  -moz-box-shadow: inset 0 0 0 300px transparent;
295
295
  box-shadow: inset 0 0 0 300px transparent;
296
296
  }
297
297
 
298
- /* line 88, ../sass/_keyframes.sass */
298
+ /* line 106, ../sass/_keyframes.sass */
299
299
  70% {
300
300
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
301
301
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
302
302
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
303
303
  }
304
304
 
305
- /* line 90, ../sass/_keyframes.sass */
305
+ /* line 108, ../sass/_keyframes.sass */
306
306
  100% {
307
307
  -webkit-box-shadow: inset 0 0 0 300px transparent;
308
308
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -311,21 +311,21 @@
311
311
  }
312
312
 
313
313
  @-o-keyframes vex-pulse {
314
- /* line 86, ../sass/_keyframes.sass */
314
+ /* line 104, ../sass/_keyframes.sass */
315
315
  0% {
316
316
  -webkit-box-shadow: inset 0 0 0 300px transparent;
317
317
  -moz-box-shadow: inset 0 0 0 300px transparent;
318
318
  box-shadow: inset 0 0 0 300px transparent;
319
319
  }
320
320
 
321
- /* line 88, ../sass/_keyframes.sass */
321
+ /* line 106, ../sass/_keyframes.sass */
322
322
  70% {
323
323
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
324
324
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
325
325
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
326
326
  }
327
327
 
328
- /* line 90, ../sass/_keyframes.sass */
328
+ /* line 108, ../sass/_keyframes.sass */
329
329
  100% {
330
330
  -webkit-box-shadow: inset 0 0 0 300px transparent;
331
331
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -1,19 +1,19 @@
1
1
  @keyframes vex-pulse {
2
- /* line 86, ../sass/_keyframes.sass */
2
+ /* line 104, ../sass/_keyframes.sass */
3
3
  0% {
4
4
  -webkit-box-shadow: inset 0 0 0 300px transparent;
5
5
  -moz-box-shadow: inset 0 0 0 300px transparent;
6
6
  box-shadow: inset 0 0 0 300px transparent;
7
7
  }
8
8
 
9
- /* line 88, ../sass/_keyframes.sass */
9
+ /* line 106, ../sass/_keyframes.sass */
10
10
  70% {
11
11
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
12
12
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
13
13
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
14
14
  }
15
15
 
16
- /* line 90, ../sass/_keyframes.sass */
16
+ /* line 108, ../sass/_keyframes.sass */
17
17
  100% {
18
18
  -webkit-box-shadow: inset 0 0 0 300px transparent;
19
19
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -22,21 +22,21 @@
22
22
  }
23
23
 
24
24
  @-webkit-keyframes vex-pulse {
25
- /* line 86, ../sass/_keyframes.sass */
25
+ /* line 104, ../sass/_keyframes.sass */
26
26
  0% {
27
27
  -webkit-box-shadow: inset 0 0 0 300px transparent;
28
28
  -moz-box-shadow: inset 0 0 0 300px transparent;
29
29
  box-shadow: inset 0 0 0 300px transparent;
30
30
  }
31
31
 
32
- /* line 88, ../sass/_keyframes.sass */
32
+ /* line 106, ../sass/_keyframes.sass */
33
33
  70% {
34
34
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
35
35
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
36
36
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
37
37
  }
38
38
 
39
- /* line 90, ../sass/_keyframes.sass */
39
+ /* line 108, ../sass/_keyframes.sass */
40
40
  100% {
41
41
  -webkit-box-shadow: inset 0 0 0 300px transparent;
42
42
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -45,21 +45,21 @@
45
45
  }
46
46
 
47
47
  @-moz-keyframes vex-pulse {
48
- /* line 86, ../sass/_keyframes.sass */
48
+ /* line 104, ../sass/_keyframes.sass */
49
49
  0% {
50
50
  -webkit-box-shadow: inset 0 0 0 300px transparent;
51
51
  -moz-box-shadow: inset 0 0 0 300px transparent;
52
52
  box-shadow: inset 0 0 0 300px transparent;
53
53
  }
54
54
 
55
- /* line 88, ../sass/_keyframes.sass */
55
+ /* line 106, ../sass/_keyframes.sass */
56
56
  70% {
57
57
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
58
58
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
59
59
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
60
60
  }
61
61
 
62
- /* line 90, ../sass/_keyframes.sass */
62
+ /* line 108, ../sass/_keyframes.sass */
63
63
  100% {
64
64
  -webkit-box-shadow: inset 0 0 0 300px transparent;
65
65
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -68,21 +68,21 @@
68
68
  }
69
69
 
70
70
  @-ms-keyframes vex-pulse {
71
- /* line 86, ../sass/_keyframes.sass */
71
+ /* line 104, ../sass/_keyframes.sass */
72
72
  0% {
73
73
  -webkit-box-shadow: inset 0 0 0 300px transparent;
74
74
  -moz-box-shadow: inset 0 0 0 300px transparent;
75
75
  box-shadow: inset 0 0 0 300px transparent;
76
76
  }
77
77
 
78
- /* line 88, ../sass/_keyframes.sass */
78
+ /* line 106, ../sass/_keyframes.sass */
79
79
  70% {
80
80
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
81
81
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
82
82
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
83
83
  }
84
84
 
85
- /* line 90, ../sass/_keyframes.sass */
85
+ /* line 108, ../sass/_keyframes.sass */
86
86
  100% {
87
87
  -webkit-box-shadow: inset 0 0 0 300px transparent;
88
88
  -moz-box-shadow: inset 0 0 0 300px transparent;
@@ -91,21 +91,21 @@
91
91
  }
92
92
 
93
93
  @-o-keyframes vex-pulse {
94
- /* line 86, ../sass/_keyframes.sass */
94
+ /* line 104, ../sass/_keyframes.sass */
95
95
  0% {
96
96
  -webkit-box-shadow: inset 0 0 0 300px transparent;
97
97
  -moz-box-shadow: inset 0 0 0 300px transparent;
98
98
  box-shadow: inset 0 0 0 300px transparent;
99
99
  }
100
100
 
101
- /* line 88, ../sass/_keyframes.sass */
101
+ /* line 106, ../sass/_keyframes.sass */
102
102
  70% {
103
103
  -webkit-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
104
104
  -moz-box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
105
105
  box-shadow: inset 0 0 0 300px rgba(255, 255, 255, 0.25);
106
106
  }
107
107
 
108
- /* line 90, ../sass/_keyframes.sass */
108
+ /* line 108, ../sass/_keyframes.sass */
109
109
  100% {
110
110
  -webkit-box-shadow: inset 0 0 0 300px transparent;
111
111
  -moz-box-shadow: inset 0 0 0 300px transparent;