Skip to content

Commit d0ba840

Browse files
committed
adding bower components, adding datetime pickers
1 parent 14ac260 commit d0ba840

File tree

677 files changed

+197165
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

677 files changed

+197165
-38
lines changed

static/admin.js

+8-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addUser = function(e) {
2626
}
2727
});
2828

29-
req.success(function() {
29+
req.done(function() {
3030
$('#username-form-group').removeClass('has-error');
3131

3232
$('#username-form-group').addClass('has-success');
@@ -69,7 +69,7 @@ var assignArticlesIndividual = function(e) {
6969
}
7070
});
7171

72-
req.success(function() {
72+
req.done(function() {
7373
$('#assign-articles-individual-form-group').removeClass('has-error');
7474
$('#assign-articles-individual-form-group').addClass('has-success');
7575
$('#assign-articles-individual-form-group div.form-control-feedback').text(req.responseText);
@@ -105,7 +105,7 @@ var assignArticlesGroup = function(e) {
105105
}
106106
});
107107

108-
req.success(function() {
108+
req.done(function() {
109109
$('#assign-articles-group-form-group').removeClass('has-error');
110110
$('#assign-articles-group-form-group').addClass('has-success');
111111
$('#assign-articles-group-form-group div.form-control-feedback').text(req.responseText);
@@ -142,7 +142,7 @@ var transferArticles = function(e) {
142142
}
143143
});
144144

145-
req.success(function() {
145+
req.done(function() {
146146
$('#transfer-articles-form-group').removeClass('has-error');
147147

148148
$('#transfer-articles-form-group').addClass('has-success');
@@ -167,6 +167,10 @@ $(function(){
167167
// show add user first
168168
$("#add-user_block").show();
169169

170+
// date listeners
171+
$('#start-date-picker').datetimepicker({ format: 'YYYY-MM-DD' });
172+
$('#end-date-picker').datetimepicker({ format: 'YYYY-MM-DD' });
173+
170174
$('#submit').click(function(e) {
171175
// get the active button to identify correct form
172176
var current_form = $('.active').attr("id").split('_')[0];
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"name": "bootstrap",
3+
"description": "The most popular front-end framework for developing responsive, mobile first projects on the web.",
4+
"keywords": [
5+
"css",
6+
"js",
7+
"less",
8+
"mobile-first",
9+
"responsive",
10+
"front-end",
11+
"framework",
12+
"web"
13+
],
14+
"homepage": "http://getbootstrap.com",
15+
"license": "MIT",
16+
"moduleType": "globals",
17+
"main": [
18+
"less/bootstrap.less",
19+
"dist/js/bootstrap.js"
20+
],
21+
"ignore": [
22+
"/.*",
23+
"_config.yml",
24+
"CNAME",
25+
"composer.json",
26+
"CONTRIBUTING.md",
27+
"docs",
28+
"js/tests",
29+
"test-infra"
30+
],
31+
"dependencies": {
32+
"jquery": "1.9.1 - 3"
33+
},
34+
"version": "3.3.7",
35+
"_release": "3.3.7",
36+
"_resolution": {
37+
"type": "version",
38+
"tag": "v3.3.7",
39+
"commit": "0b9c4a4007c44201dce9a6cc1a38407005c26c86"
40+
},
41+
"_source": "https://github.com/twbs/bootstrap.git",
42+
"_target": "^3.3.7",
43+
"_originalSource": "bootstrap",
44+
"_direct": true
45+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
2+
3+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4+
5+
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
source 'https://rubygems.org'
2+
3+
group :development, :test do
4+
gem 'jekyll', '~> 3.1.2'
5+
gem 'jekyll-sitemap', '~> 0.11.0'
6+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.4.0)
5+
colorator (0.1)
6+
ffi (1.9.14-x64-mingw32)
7+
jekyll (3.1.6)
8+
colorator (~> 0.1)
9+
jekyll-sass-converter (~> 1.0)
10+
jekyll-watch (~> 1.1)
11+
kramdown (~> 1.3)
12+
liquid (~> 3.0)
13+
mercenary (~> 0.3.3)
14+
rouge (~> 1.7)
15+
safe_yaml (~> 1.0)
16+
jekyll-sass-converter (1.4.0)
17+
sass (~> 3.4)
18+
jekyll-sitemap (0.11.0)
19+
addressable (~> 2.4.0)
20+
jekyll-watch (1.4.0)
21+
listen (~> 3.0, < 3.1)
22+
kramdown (1.11.1)
23+
liquid (3.0.6)
24+
listen (3.0.8)
25+
rb-fsevent (~> 0.9, >= 0.9.4)
26+
rb-inotify (~> 0.9, >= 0.9.7)
27+
mercenary (0.3.6)
28+
rb-fsevent (0.9.7)
29+
rb-inotify (0.9.7)
30+
ffi (>= 0.5.0)
31+
rouge (1.11.1)
32+
safe_yaml (1.0.4)
33+
sass (3.4.22)
34+
35+
PLATFORMS
36+
x64-mingw32
37+
38+
DEPENDENCIES
39+
jekyll (~> 3.1.2)
40+
jekyll-sitemap (~> 0.11.0)
41+
42+
BUNDLED WITH
43+
1.12.5

0 commit comments

Comments
 (0)