Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
342
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
25
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TransFem.org
Sharkey
Commits
b66bac78
Commit
b66bac78
authored
8 years ago
by
syuilo
Browse files
Options
Downloads
Patches
Plain Diff
wip
parent
1efbb5a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/web/app/boot.js
+4
-1
4 additions, 1 deletion
src/web/app/boot.js
src/web/app/desktop/tags/drive/browser.tag
+314
-291
314 additions, 291 deletions
src/web/app/desktop/tags/drive/browser.tag
with
318 additions
and
292 deletions
src/web/app/boot.js
+
4
−
1
View file @
b66bac78
...
...
@@ -27,13 +27,16 @@ riot.mixin({
// ↓ iOS待ちPolyfill (SEE: http://caniuse.com/#feat=fetch)
require
(
'
whatwg-fetch
'
);
// ↓ NodeList、HTMLCollectionで forEach を使えるようにする
// ↓ NodeList、HTMLCollection
、FileList
で forEach を使えるようにする
if
(
NodeList
.
prototype
.
forEach
===
undefined
)
{
NodeList
.
prototype
.
forEach
=
Array
.
prototype
.
forEach
;
}
if
(
HTMLCollection
.
prototype
.
forEach
===
undefined
)
{
HTMLCollection
.
prototype
.
forEach
=
Array
.
prototype
.
forEach
;
}
if
(
FileList
.
prototype
.
forEach
===
undefined
)
{
FileList
.
prototype
.
forEach
=
Array
.
prototype
.
forEach
;
}
// ↓ iOSでプライベートモードだとlocalStorageが使えないので既存のメソッドを上書きする
try
{
...
...
This diff is collapsed.
Click to expand it.
src/web/app/desktop/tags/drive/browser.tag
+
314
−
291
View file @
b66bac78
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment