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

Commit 3a8195e

Browse files
committed
0.1.0
1 parent 76224d1 commit 3a8195e

File tree

2 files changed

+31
-2
lines changed

2 files changed

+31
-2
lines changed

bower.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "vueboot",
3+
"version": "0.1.0",
4+
"homepage": "https://github.com/Morgul/vueboot",
5+
"authors": [
6+
"Christopher S. Case <chris.case@g33xnexus.com>"
7+
],
8+
"description": "Enables or disables animation on modal opening and closing.",
9+
"main": "dist/vueboot.js",
10+
"moduleType": [
11+
"amd",
12+
"globals",
13+
"node"
14+
],
15+
"keywords": [
16+
"vue",
17+
"bootstrap"
18+
],
19+
"ignore": [
20+
"package.json",
21+
"Gruntfile.js",
22+
".gitignore",
23+
"src",
24+
"node_modules",
25+
"examples",
26+
"_site"
27+
],
28+
"license": "MIT"
29+
}

dist/vueboot.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Vuestrap v0.1.0 */
1+
/* VueBoot v0.1.0 */
22
(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){
33
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>";
44
'use strict';
@@ -37,7 +37,7 @@ exports['default'] = {
3737
ready: function ready() {
3838
var _this = this;
3939

40-
if (this.timeout > -1) {
40+
if (this.timeout >= 0) {
4141
setTimeout(function () {
4242
_this.dismiss();
4343
}, this.timeout);

0 commit comments

Comments
 (0)