Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UFrameIT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FrameIT
UFrameIT
Commits
c7cec09a
Commit
c7cec09a
authored
1 week ago
by
baletiballo
Browse files
Options
Downloads
Patches
Plain Diff
Renamed Facts.ts to Types.ts, because it holds more types than just the Facts
parent
893fe709
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Assets/StreamingAssets/ScrollView_Server/build/Types.js
+3
-3
3 additions, 3 deletions
Assets/StreamingAssets/ScrollView_Server/build/Types.js
Assets/StreamingAssets/ScrollView_Server/src/Types.ts
+3
-3
3 additions, 3 deletions
Assets/StreamingAssets/ScrollView_Server/src/Types.ts
with
6 additions
and
6 deletions
Assets/StreamingAssets/ScrollView_Server/build/
Fact
s.js
→
Assets/StreamingAssets/ScrollView_Server/build/
Type
s.js
+
3
−
3
View file @
c7cec09a
...
...
@@ -238,7 +238,7 @@ class Scroll {
this
.
depiction
=
depiction
;
this
.
type
=
"
Scroll
"
;
}
}
function
is
Scroll
(
s
)
{
return
s
.
type
===
"
Scroll
"
;
static
isScroll
(
s
)
{
return
s
.
type
===
"
Scroll
"
;
}
}
This diff is collapsed.
Click to expand it.
Assets/StreamingAssets/ScrollView_Server/src/
Fact
s.ts
→
Assets/StreamingAssets/ScrollView_Server/src/
Type
s.ts
+
3
−
3
View file @
c7cec09a
...
...
@@ -316,8 +316,8 @@ class Scroll implements Backend_Object{
readonly
description
:
HTMLElement
,
readonly
depiction
?:
HTMLElement
,
)
{
}
}
function
isScroll
(
s
:
any
):
s
is
Scroll
{
return
s
.
type
===
"
Scroll
"
static
isScroll
(
s
:
any
):
s
is
Scroll
{
return
s
.
type
===
"
Scroll
"
}
}
\ No newline at end of file
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