-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from maricaantonacci/devel
Adding SLAs management
- Loading branch information
Showing
19 changed files
with
1,270 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.idea | ||
/*.iml | ||
/bower_components | ||
/node_modules |
106 changes: 106 additions & 0 deletions
106
app/static/bootstrap/Bootstrap-Confirmation-2/Gruntfile.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
module.exports = function(grunt) { | ||
require('jit-grunt')(grunt); | ||
|
||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
|
||
banner: '/*!\n' + | ||
' * Bootstrap Confirmation <%= pkg.version %>\n' + | ||
' * Copyright 2013 Nimit Suwannagate <[email protected]>\n' + | ||
' * Copyright 2014-<%= grunt.template.today("yyyy") %> Damien "Mistic" Sorel <[email protected]>\n' + | ||
' * Licensed under the Apache License, Version 2.0\n' + | ||
' */', | ||
|
||
// serve folder content | ||
connect: { | ||
dev: { | ||
options: { | ||
port: 9000, | ||
livereload: true | ||
} | ||
} | ||
}, | ||
|
||
// watchers | ||
watch: { | ||
options: { | ||
livereload: true | ||
}, | ||
dev: { | ||
files: ['bootstrap-confirmation.js', 'example/**'], | ||
tasks: [] | ||
} | ||
}, | ||
|
||
// open example | ||
open: { | ||
dev: { | ||
path: 'http://localhost:<%= connect.dev.options.port%>/example/index.html' | ||
} | ||
}, | ||
|
||
// replace version number | ||
replace: { | ||
dist: { | ||
options: { | ||
patterns: [ | ||
{ | ||
match: /(Confirmation\.VERSION = ').*(';)/, | ||
replacement: '$1<%= pkg.version %>$2' | ||
} | ||
] | ||
}, | ||
files: { | ||
'bootstrap-confirmation.js': [ | ||
'bootstrap-confirmation.js' | ||
] | ||
} | ||
} | ||
}, | ||
|
||
// compress js | ||
uglify: { | ||
options: { | ||
banner: '<%= banner %>\n', | ||
mangle: { | ||
except: ['$'] | ||
} | ||
}, | ||
dist: { | ||
files: { | ||
'bootstrap-confirmation.min.js': [ | ||
'bootstrap-confirmation.js' | ||
] | ||
} | ||
} | ||
}, | ||
|
||
// jshint tests | ||
jshint: { | ||
lib: { | ||
files: { | ||
src: [ | ||
'bootstrap-confirmation.js' | ||
] | ||
} | ||
} | ||
} | ||
} | ||
); | ||
|
||
grunt.registerTask('default', [ | ||
'replace', | ||
'uglify' | ||
]); | ||
|
||
grunt.registerTask('test', [ | ||
'jshint' | ||
]); | ||
|
||
grunt.registerTask('serve', [ | ||
'connect', | ||
'open', | ||
'watch' | ||
]); | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Bootstrap-Confirmation | ||
|
||
[![npm version](https://img.shields.io/npm/v/bootstrap-confirmation2.svg?style=flat-square)](https://www.npmjs.com/package/bootstrap-confirmation2) | ||
[![jsDelivr CDN](https://data.jsdelivr.com/v1/package/npm/bootstrap-confirmation2/badge)](https://www.jsdelivr.com/package/npm/bootstrap-confirmation2) | ||
[![Build Status](https://img.shields.io/travis/mistic100/Bootstrap-Confirmation/master.svg?style=flat-square)](https://travis-ci.org/mistic100/Bootstrap-Confirmation) | ||
[![Dependencies Status](https://david-dm.org/mistic100/Bootstrap-Confirmation/status.svg?style=flat-square)](https://david-dm.org/mistic100/Bootstrap-Confirmation) | ||
|
||
Bootstrap plugin for on-place confirm boxes using Popover. | ||
|
||
## Documentation | ||
|
||
[bootstrap-confirmation.js.org](http://bootstrap-confirmation.js.org) | ||
|
||
## Installation | ||
|
||
#### Bootstrap 4 | ||
|
||
``` | ||
npm install bootstrap-confirmation2 | ||
``` | ||
|
||
#### Bootstrap 3 | ||
|
||
``` | ||
npm install [email protected] | ||
``` |
Oops, something went wrong.