Skip to content
This repository has been archived by the owner on Feb 19, 2019. It is now read-only.

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgul committed Oct 14, 2015
1 parent 76224d1 commit 3a8195e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 2 deletions.
29 changes: 29 additions & 0 deletions bower.json
@@ -0,0 +1,29 @@
{
"name": "vueboot",
"version": "0.1.0",
"homepage": "https://github.com/Morgul/vueboot",
"authors": [
"Christopher S. Case <chris.case@g33xnexus.com>"
],
"description": "Enables or disables animation on modal opening and closing.",
"main": "dist/vueboot.js",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"vue",
"bootstrap"
],
"ignore": [
"package.json",
"Gruntfile.js",
".gitignore",
"src",
"node_modules",
"examples",
"_site"
],
"license": "MIT"
}
4 changes: 2 additions & 2 deletions dist/vueboot.js
@@ -1,4 +1,4 @@
/* Vuestrap v0.1.0 */
/* VueBoot v0.1.0 */
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.vueboot = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
var __vue_template__ = "<div class=\"alert alert-{{ type }}\" :class=\"{ 'alert-dismissible': dismissible, fade: animation, in: animation }\" role=\"alert\">\n <button v-if=\"dismissible\" type=\"button\" class=\"close\" data-dismiss=\"alert\" aria-label=\"Close\">\n <span aria-hidden=\"true\">×</span>\n <span class=\"sr-only\">Close</span>\n </button>\n <slot></slot>\n </div>";
'use strict';
Expand Down Expand Up @@ -37,7 +37,7 @@ exports['default'] = {
ready: function ready() {
var _this = this;

if (this.timeout > -1) {
if (this.timeout >= 0) {
setTimeout(function () {
_this.dismiss();
}, this.timeout);
Expand Down

0 comments on commit 3a8195e

Please sign in to comment.