linny-r 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +69 -35
- package/package.json +1 -1
- package/server.js +114 -43
- package/static/images/octaeder.svg +993 -0
- package/static/index.html +21 -612
- package/static/linny-r.css +32 -364
- package/static/scripts/linny-r-gui.js +188 -41
- package/static/scripts/linny-r-model.js +3 -0
- package/static/scripts/linny-r-utils.js +7 -2
- package/static/scripts/linny-r-vm.js +10 -0
package/static/linny-r.css
CHANGED
@@ -288,6 +288,11 @@ img.blink {
|
|
288
288
|
animation: blink 1s step-start 0s infinite;
|
289
289
|
}
|
290
290
|
|
291
|
+
#stop-btn.blink {
|
292
|
+
cursor: default;
|
293
|
+
pointer-events: none;
|
294
|
+
}
|
295
|
+
|
291
296
|
img.mbtn {
|
292
297
|
width: 21px;
|
293
298
|
height: 21px;
|
@@ -4269,6 +4274,17 @@ img.finder {
|
|
4269
4274
|
width: 50%;
|
4270
4275
|
}
|
4271
4276
|
|
4277
|
+
/* NOTE: Finder buttons are initially invisible */
|
4278
|
+
|
4279
|
+
#finder-edit-btn {
|
4280
|
+
position: absolute;
|
4281
|
+
height: 16px;
|
4282
|
+
width: 16px;
|
4283
|
+
bottom: 1px;
|
4284
|
+
right: calc(50% + 24px);
|
4285
|
+
display: none;
|
4286
|
+
}
|
4287
|
+
|
4272
4288
|
#finder-copy-btn {
|
4273
4289
|
position: absolute;
|
4274
4290
|
height: 16px;
|
@@ -4756,372 +4772,24 @@ div.call-stack-expr {
|
|
4756
4772
|
padding-bottom: 3px;
|
4757
4773
|
}
|
4758
4774
|
|
4759
|
-
/*
|
4760
|
-
|
4761
|
-
#fr00 {
|
4762
|
-
visibility: hidden;
|
4763
|
-
animation: 3s show infinite;
|
4764
|
-
animation-delay: 0.05s;
|
4765
|
-
}
|
4766
|
-
|
4767
|
-
#fr01 {
|
4768
|
-
visibility: hidden;
|
4769
|
-
animation: 3s show infinite;
|
4770
|
-
animation-delay: 0.1s;
|
4771
|
-
}
|
4772
|
-
|
4773
|
-
#fr02 {
|
4774
|
-
visibility: hidden;
|
4775
|
-
animation: 3s show infinite;
|
4776
|
-
animation-delay: 0.15s;
|
4777
|
-
}
|
4778
|
-
|
4779
|
-
#fr03 {
|
4780
|
-
visibility: hidden;
|
4781
|
-
animation: 3s show infinite;
|
4782
|
-
animation-delay: 0.2s;
|
4783
|
-
}
|
4784
|
-
|
4785
|
-
#fr04 {
|
4786
|
-
visibility: hidden;
|
4787
|
-
animation: 3s show infinite;
|
4788
|
-
animation-delay: 0.25s;
|
4789
|
-
}
|
4790
|
-
|
4791
|
-
#fr05 {
|
4792
|
-
visibility: hidden;
|
4793
|
-
animation: 3s show infinite;
|
4794
|
-
animation-delay: 0.3s;
|
4795
|
-
}
|
4796
|
-
|
4797
|
-
#fr06 {
|
4798
|
-
visibility: hidden;
|
4799
|
-
animation: 3s show infinite;
|
4800
|
-
animation-delay: 0.35s;
|
4801
|
-
}
|
4802
|
-
|
4803
|
-
#fr07 {
|
4804
|
-
visibility: hidden;
|
4805
|
-
animation: 3s show infinite;
|
4806
|
-
animation-delay: 0.4s;
|
4807
|
-
}
|
4808
|
-
|
4809
|
-
#fr08 {
|
4810
|
-
visibility: hidden;
|
4811
|
-
animation: 3s show infinite;
|
4812
|
-
animation-delay: 0.45s;
|
4813
|
-
}
|
4814
|
-
|
4815
|
-
#fr09 {
|
4816
|
-
visibility: hidden;
|
4817
|
-
animation: 3s show infinite;
|
4818
|
-
animation-delay: 0.5s;
|
4819
|
-
}
|
4820
|
-
|
4821
|
-
#fr10 {
|
4822
|
-
visibility: hidden;
|
4823
|
-
animation: 3s show infinite;
|
4824
|
-
animation-delay: 0.55s;
|
4825
|
-
}
|
4826
|
-
|
4827
|
-
#fr11 {
|
4828
|
-
visibility: hidden;
|
4829
|
-
animation: 3s show infinite;
|
4830
|
-
animation-delay: 0.6s;
|
4831
|
-
}
|
4832
|
-
|
4833
|
-
#fr12 {
|
4834
|
-
visibility: hidden;
|
4835
|
-
animation: 3s show infinite;
|
4836
|
-
animation-delay: 0.65s;
|
4837
|
-
}
|
4838
|
-
|
4839
|
-
#fr13 {
|
4840
|
-
visibility: hidden;
|
4841
|
-
animation: 3s show infinite;
|
4842
|
-
animation-delay: 0.7s;
|
4843
|
-
}
|
4844
|
-
|
4845
|
-
#fr14 {
|
4846
|
-
visibility: hidden;
|
4847
|
-
animation: 3s show infinite;
|
4848
|
-
animation-delay: 0.75s;
|
4849
|
-
}
|
4850
|
-
|
4851
|
-
#fr15 {
|
4852
|
-
visibility: hidden;
|
4853
|
-
animation: 3s show infinite;
|
4854
|
-
animation-delay: 0.8s;
|
4855
|
-
}
|
4856
|
-
|
4857
|
-
#fr16 {
|
4858
|
-
visibility: hidden;
|
4859
|
-
animation: 3s show infinite;
|
4860
|
-
animation-delay: 0.85s;
|
4861
|
-
}
|
4862
|
-
|
4863
|
-
#fr17 {
|
4864
|
-
visibility: hidden;
|
4865
|
-
animation: 3s show infinite;
|
4866
|
-
animation-delay: 0.9s;
|
4867
|
-
}
|
4868
|
-
|
4869
|
-
#fr18 {
|
4870
|
-
visibility: hidden;
|
4871
|
-
animation: 3s show infinite;
|
4872
|
-
animation-delay: 0.95s;
|
4873
|
-
}
|
4874
|
-
|
4875
|
-
#fr19 {
|
4876
|
-
visibility: hidden;
|
4877
|
-
animation: 3s show infinite;
|
4878
|
-
animation-delay: 1s;
|
4879
|
-
}
|
4880
|
-
|
4881
|
-
#fr20 {
|
4882
|
-
visibility: hidden;
|
4883
|
-
animation: 3s show infinite;
|
4884
|
-
animation-delay: 1.05s;
|
4885
|
-
}
|
4886
|
-
|
4887
|
-
#fr21 {
|
4888
|
-
visibility: hidden;
|
4889
|
-
animation: 3s show infinite;
|
4890
|
-
animation-delay: 1.1s;
|
4891
|
-
}
|
4892
|
-
|
4893
|
-
#fr22 {
|
4894
|
-
visibility: hidden;
|
4895
|
-
animation: 3s show infinite;
|
4896
|
-
animation-delay: 1.15s;
|
4897
|
-
}
|
4898
|
-
|
4899
|
-
#fr23 {
|
4900
|
-
visibility: hidden;
|
4901
|
-
animation: 3s show infinite;
|
4902
|
-
animation-delay: 1.2s;
|
4903
|
-
}
|
4904
|
-
|
4905
|
-
#fr24 {
|
4906
|
-
visibility: hidden;
|
4907
|
-
animation: 3s show infinite;
|
4908
|
-
animation-delay: 1.25s;
|
4909
|
-
}
|
4910
|
-
|
4911
|
-
#fr25 {
|
4912
|
-
visibility: hidden;
|
4913
|
-
animation: 3s show infinite;
|
4914
|
-
animation-delay: 1.3s;
|
4915
|
-
}
|
4916
|
-
|
4917
|
-
#fr26 {
|
4918
|
-
visibility: hidden;
|
4919
|
-
animation: 3s show infinite;
|
4920
|
-
animation-delay: 1.35s;
|
4921
|
-
}
|
4922
|
-
|
4923
|
-
#fr27 {
|
4924
|
-
visibility: hidden;
|
4925
|
-
animation: 3s show infinite;
|
4926
|
-
animation-delay: 1.4s;
|
4927
|
-
}
|
4775
|
+
/* The UPDATING modal notifies that update is in progress */
|
4928
4776
|
|
4929
|
-
#
|
4930
|
-
|
4931
|
-
|
4932
|
-
animation-delay: 1.45s;
|
4777
|
+
#updating-dlg {
|
4778
|
+
width: 325px;
|
4779
|
+
height: 85px;
|
4933
4780
|
}
|
4934
4781
|
|
4935
|
-
#
|
4936
|
-
|
4937
|
-
|
4938
|
-
|
4939
|
-
|
4940
|
-
|
4941
|
-
#fr30 {
|
4942
|
-
visibility: hidden;
|
4943
|
-
animation: 3s show infinite;
|
4944
|
-
animation-delay: 1.55s;
|
4945
|
-
}
|
4946
|
-
|
4947
|
-
#fr31 {
|
4948
|
-
visibility: hidden;
|
4949
|
-
animation: 3s show infinite;
|
4950
|
-
animation-delay: 1.6s;
|
4951
|
-
}
|
4952
|
-
|
4953
|
-
#fr32 {
|
4954
|
-
visibility: hidden;
|
4955
|
-
animation: 3s show infinite;
|
4956
|
-
animation-delay: 1.65s;
|
4957
|
-
}
|
4958
|
-
|
4959
|
-
#fr33 {
|
4960
|
-
visibility: hidden;
|
4961
|
-
animation: 3s show infinite;
|
4962
|
-
animation-delay: 1.7s;
|
4963
|
-
}
|
4964
|
-
|
4965
|
-
#fr34 {
|
4966
|
-
visibility: hidden;
|
4967
|
-
animation: 3s show infinite;
|
4968
|
-
animation-delay: 1.75s;
|
4969
|
-
}
|
4970
|
-
|
4971
|
-
#fr35 {
|
4972
|
-
visibility: hidden;
|
4973
|
-
animation: 3s show infinite;
|
4974
|
-
animation-delay: 1.8s;
|
4975
|
-
}
|
4976
|
-
|
4977
|
-
#fr36 {
|
4978
|
-
visibility: hidden;
|
4979
|
-
animation: 3s show infinite;
|
4980
|
-
animation-delay: 1.85s;
|
4981
|
-
}
|
4982
|
-
|
4983
|
-
#fr37 {
|
4984
|
-
visibility: hidden;
|
4985
|
-
animation: 3s show infinite;
|
4986
|
-
animation-delay: 1.9s;
|
4987
|
-
}
|
4988
|
-
|
4989
|
-
#fr38 {
|
4990
|
-
visibility: hidden;
|
4991
|
-
animation: 3s show infinite;
|
4992
|
-
animation-delay: 1.95s;
|
4993
|
-
}
|
4994
|
-
|
4995
|
-
#fr39 {
|
4996
|
-
visibility: hidden;
|
4997
|
-
animation: 3s show infinite;
|
4998
|
-
animation-delay: 2s;
|
4999
|
-
}
|
5000
|
-
|
5001
|
-
#fr40 {
|
5002
|
-
visibility: hidden;
|
5003
|
-
animation: 3s show infinite;
|
5004
|
-
animation-delay: 2.05s;
|
5005
|
-
}
|
5006
|
-
|
5007
|
-
#fr41 {
|
5008
|
-
visibility: hidden;
|
5009
|
-
animation: 3s show infinite;
|
5010
|
-
animation-delay: 2.1s;
|
5011
|
-
}
|
5012
|
-
|
5013
|
-
#fr42 {
|
5014
|
-
visibility: hidden;
|
5015
|
-
animation: 3s show infinite;
|
5016
|
-
animation-delay: 2.15s;
|
5017
|
-
}
|
5018
|
-
|
5019
|
-
#fr43 {
|
5020
|
-
visibility: hidden;
|
5021
|
-
animation: 3s show infinite;
|
5022
|
-
animation-delay: 2.2s;
|
5023
|
-
}
|
5024
|
-
|
5025
|
-
#fr44 {
|
5026
|
-
visibility: hidden;
|
5027
|
-
animation: 3s show infinite;
|
5028
|
-
animation-delay: 2.25s;
|
5029
|
-
}
|
5030
|
-
|
5031
|
-
#fr45 {
|
5032
|
-
visibility: hidden;
|
5033
|
-
animation: 3s show infinite;
|
5034
|
-
animation-delay: 2.3s;
|
5035
|
-
}
|
5036
|
-
|
5037
|
-
#fr46 {
|
5038
|
-
visibility: hidden;
|
5039
|
-
animation: 3s show infinite;
|
5040
|
-
animation-delay: 2.35s;
|
5041
|
-
}
|
5042
|
-
|
5043
|
-
#fr47 {
|
5044
|
-
visibility: hidden;
|
5045
|
-
animation: 3s show infinite;
|
5046
|
-
animation-delay: 2.4s;
|
5047
|
-
}
|
5048
|
-
|
5049
|
-
#fr48 {
|
5050
|
-
visibility: hidden;
|
5051
|
-
animation: 3s show infinite;
|
5052
|
-
animation-delay: 2.45s;
|
5053
|
-
}
|
5054
|
-
|
5055
|
-
#fr49 {
|
5056
|
-
visibility: hidden;
|
5057
|
-
animation: 3s show infinite;
|
5058
|
-
animation-delay: 2.5s;
|
5059
|
-
}
|
5060
|
-
|
5061
|
-
#fr50 {
|
5062
|
-
visibility: hidden;
|
5063
|
-
animation: 3s show infinite;
|
5064
|
-
animation-delay: 2.55s;
|
5065
|
-
}
|
5066
|
-
|
5067
|
-
#fr51 {
|
5068
|
-
visibility: hidden;
|
5069
|
-
animation: 3s show infinite;
|
5070
|
-
animation-delay: 2.6s;
|
5071
|
-
}
|
5072
|
-
|
5073
|
-
#fr52 {
|
5074
|
-
visibility: hidden;
|
5075
|
-
animation: 3s show infinite;
|
5076
|
-
animation-delay: 2.65s;
|
5077
|
-
}
|
5078
|
-
|
5079
|
-
#fr53 {
|
5080
|
-
visibility: hidden;
|
5081
|
-
animation: 3s show infinite;
|
5082
|
-
animation-delay: 2.7s;
|
5083
|
-
}
|
5084
|
-
|
5085
|
-
#fr54 {
|
5086
|
-
visibility: hidden;
|
5087
|
-
animation: 3s show infinite;
|
5088
|
-
animation-delay: 2.75s;
|
5089
|
-
}
|
5090
|
-
|
5091
|
-
#fr55 {
|
5092
|
-
visibility: hidden;
|
5093
|
-
animation: 3s show infinite;
|
5094
|
-
animation-delay: 2.8s;
|
5095
|
-
}
|
5096
|
-
|
5097
|
-
#fr56 {
|
5098
|
-
visibility: hidden;
|
5099
|
-
animation: 3s show infinite;
|
5100
|
-
animation-delay: 2.85s;
|
5101
|
-
}
|
5102
|
-
|
5103
|
-
#fr57 {
|
5104
|
-
visibility: hidden;
|
5105
|
-
animation: 3s show infinite;
|
5106
|
-
animation-delay: 2.9s;
|
5107
|
-
}
|
5108
|
-
|
5109
|
-
#fr58 {
|
5110
|
-
visibility: hidden;
|
5111
|
-
animation: 3s show infinite;
|
5112
|
-
animation-delay: 2.95s;
|
5113
|
-
}
|
5114
|
-
|
5115
|
-
#fr59 {
|
5116
|
-
visibility: hidden;
|
5117
|
-
animation: 3s show infinite;
|
5118
|
-
animation-delay: 3s;
|
5119
|
-
}
|
5120
|
-
|
5121
|
-
@keyframes show {
|
5122
|
-
0% { visibility: visible;}
|
5123
|
-
1.666% { visibility: visible; }
|
5124
|
-
1.667% { visibility: hidden; }
|
5125
|
-
100% { visibility: hidden; }
|
4782
|
+
#updating-msg {
|
4783
|
+
position: absolute;
|
4784
|
+
top: 29px;
|
4785
|
+
left: 68px;
|
4786
|
+
font-size: 13px;
|
5126
4787
|
}
|
5127
4788
|
|
4789
|
+
#updating-icon {
|
4790
|
+
position: absolute;
|
4791
|
+
top: 26px;
|
4792
|
+
left: 7px;
|
4793
|
+
width: 60px;
|
4794
|
+
height: 60px;
|
4795
|
+
}
|