回答編集履歴
2
修正
answer
CHANGED
@@ -17,4 +17,4 @@
|
|
17
17
|
|
18
18
|
これによると、githubに条項文があがってますね。
|
19
19
|
|
20
|
-
|
20
|
+
MITライセンスは著作権表示が必要ですが、bootstrapの各ファイル内に明示されているため利用する側では何もする必要がないですね。
|
1
追記
answer
CHANGED
@@ -1,7 +1,20 @@
|
|
1
|
-
bootstrap.js冒頭のコメントにライセンス表示があります。
|
1
|
+
bootstrap.js、bootstrap.css冒頭のコメントにライセンス表示があります。
|
2
2
|
|
3
|
+
js
|
3
4
|
> /*!
|
4
5
|
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
5
6
|
* Copyright 2011-2016 Twitter, Inc.
|
6
7
|
* Licensed under the MIT license
|
7
|
-
*/
|
8
|
+
*/
|
9
|
+
|
10
|
+
css
|
11
|
+
> /*!
|
12
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
13
|
+
* Copyright 2011-2016 Twitter, Inc.
|
14
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
15
|
+
*/
|
16
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
17
|
+
|
18
|
+
これによると、githubに条項文があがってますね。
|
19
|
+
|
20
|
+
いずれにしてもMITライセンスなので、利用時に著作権表示は必要ないものとなります。
|