Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added patch code from parent repo #672

Open
wants to merge 43 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
52683e8
More Google Drive support
xlc Oct 21, 2015
30f4ba9
Fix logout
xlc Oct 29, 2015
4299a8e
Remove iframe that created by display:'none' option
xlc Nov 2, 2015
d586bad
Fix PATCH for Google Drive
xlc Nov 11, 2015
52cb6e3
Update dist
xlc Nov 11, 2015
997bb1d
Fix for Google auth on Chrome apps
jordan-thoms Jan 7, 2016
62420c9
Merge branch 'chromeext' into kami-dist
jordan-thoms Jan 7, 2016
5568744
Update list
jordan-thoms Jan 7, 2016
1a6d008
Fix chrome ext authentication - check for chrome ext id first
jordan-thoms Oct 19, 2016
46b784b
Update dist
jordan-thoms Oct 19, 2016
fca392e
Fix patching drive files with name
jordan-thoms Oct 20, 2016
a09cae4
Update dist
jordan-thoms Oct 20, 2016
5c08870
Fix #448
MrSwitch Aug 31, 2016
7ded40b
Update dist
jordan-thoms Feb 28, 2017
e4de2d5
Add Authorization header
jordan-thoms Feb 28, 2017
df62a03
Add team drive support
jordan-thoms Sep 4, 2017
010bb9c
Add new compiled versions
jordan-thoms Sep 4, 2017
72d4703
Work around issue where parent cannot be accessed
jordan-thoms Jan 25, 2018
aa49720
Update built files
jordan-thoms Jan 25, 2018
7498bf7
Fix check for callback
jordan-thoms Jan 25, 2018
94ebe5e
Add new dist files
jordan-thoms Jan 25, 2018
0b257e8
Delay closing popup slightly in case the postMessage arrives too late
jordan-thoms Jan 29, 2018
cc65f38
Update compiled files
jordan-thoms Jan 29, 2018
12236ed
Add timeout cancelling to login
toplay3 May 25, 2018
fa37283
Build compiled files
toplay3 May 25, 2018
333d487
Fix string check
Jun 6, 2018
b48dfbc
Build
Jun 6, 2018
1cf9062
Add temporary debugging code
jordan-thoms Oct 21, 2019
ebd380b
Build
jordan-thoms Oct 21, 2019
9b7da91
Better method for tracking stacktrace
jordan-thoms Oct 22, 2019
fddcfb7
Provide a reference to the auth popup
Mar 5, 2020
0ce4e62
Allow for positioning the auth popup while also giving dimensions
Mar 5, 2020
7d39c61
Update plus.me scope to 'openid'
jordan-thoms May 4, 2020
e0807af
Try removing openid scope entirely
jordan-thoms May 4, 2020
0d20c1c
Don't add previous session scopes
jordan-thoms May 4, 2020
3fbe339
Do not immediate redirect back to page_uri in hello.js.
KeweiCodes Feb 15, 2023
225ff6d
Stop sending access_token in query param.
jviney Aug 11, 2023
a708f17
Merge pull request #1 from KamiHQ/jv-jt/remove-access-token-query-param
jondean-kami Aug 11, 2023
b53fdeb
Send request and ProgressEvent data when onerror triggers on xhr requ…
jondean-kami Aug 30, 2023
e9c0d33
Merge pull request #3 from KamiHQ/jd/add-debugging-data-to-xhr-errors
jondean-kami Aug 30, 2023
26c4750
Do not handle responses automatically. This conflicts with other OAut…
jviney Nov 2, 2023
72f9199
xss fix
Sep 10, 2024
7ab0fcf
reflect changes in dist/ files
Sep 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ module.exports = function(grunt) {
document: true
},
sub: true,
es3: true
es3: true,
reporterOutput: ''
}
},
jscs: {
Expand Down Expand Up @@ -94,7 +95,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('shunt');

grunt.registerTask('mocha', ['mocha_phantomjs']);
grunt.registerTask('test', ['jscs', 'jshint', 'mocha']);
grunt.registerTask('test', ['jscs', 'jshint']);
grunt.registerTask('deploy', ['test', 'shunt:build', 'shunt:minify', 'bumpup', 'updateInitConfig', 'usebanner:build']);
grunt.registerTask('default', ['test', 'shunt:build', 'shunt:minify', 'usebanner:build']);

Expand Down
Loading