Skip to content

Commit d1699b7

Browse files
author
zhangheng
committed
sdk增加cdn版本
1 parent a7cbc27 commit d1699b7

Some content is hidden

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

44 files changed

+16273
-1
lines changed

libs/qiniu-js-sdk/1.0.15-beta/qiniu.js

Lines changed: 1417 additions & 0 deletions
Large diffs are not rendered by default.

libs/qiniu-js-sdk/1.0.15-beta/qiniu.min.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.15-beta/qiniu.min.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.16-beta/qiniu.js

Lines changed: 1417 additions & 0 deletions
Large diffs are not rendered by default.

libs/qiniu-js-sdk/1.0.16-beta/qiniu.min.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.16-beta/qiniu.min.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.16.1-beta/qiniu.js

Lines changed: 1441 additions & 0 deletions
Large diffs are not rendered by default.

libs/qiniu-js-sdk/1.0.16.1-beta/qiniu.min.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.16.1-beta/qiniu.min.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/qiniu-js-sdk/1.0.17.1/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
node_modules
3+
bower_components
4+
demo/config.js

libs/qiniu-js-sdk/1.0.17.1/.jshintrc

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*************************************************************
2+
* JSHint Docs:
3+
* http://www.jshint.com/docs
4+
*
5+
* NOTICE: All of our javascript file should pass check of jsHint.
6+
*
7+
* by MaYiqing
8+
*************************************************************/
9+
10+
{
11+
// Global objects
12+
"predef": [
13+
"Q", // global namespace
14+
"model", // UserViewModel
15+
"ko", // knockout.js
16+
"Highcharts", // highcharts.js
17+
"phpjs", // php.js
18+
"_bucketName" // defined in bucket_box_layout.html
19+
],
20+
21+
// Enforcing options
22+
//"quotmark": "single", // always use single quotes
23+
"noarg": true, // forbiden arguments.calle and arguments.caller
24+
"noempty": true, // don't let statements blocks empty
25+
"eqeqeq": true, // always use === to compare
26+
"undef": true, // don't use undefined object
27+
"unused": "vars", // warning when there are some var never use in the file
28+
"curly": true, // always put curly braces around blocks in loops and conditionals
29+
"forin": true, // use hasOwnProperty when use "for(key in obj){}"
30+
"newcap": true, // must capitalize names of constructor functions
31+
32+
// Relaxing options
33+
"expr": true, // suppresses warnings about the use of expressions where function calls
34+
"boss": true, // suppresses warnings about the use of assignments in cases where comparisons are expected
35+
36+
// Enviroments
37+
"browser": true, // globals exposed by modern browsers, like document, window, etc.
38+
"devel": true, // globals that are usually used for logging poor-man's debugging: console, alert, etc.
39+
"jquery": true, // jquery library
40+
41+
"node": true,
42+
"evil": true
43+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: node_js
2+
node_js:
3+
- "0.12"
4+
cache:
5+
directories:
6+
- node_modules
7+
- bower_components
8+
install:
9+
- npm install
10+
- bower install
11+
script:
12+
- grunt

0 commit comments

Comments
 (0)