pxt-core 13.1.15 → 13.2.0
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/built/pxt.js +4 -0
- package/built/pxtlib.d.ts +1 -0
- package/built/pxtlib.js +4 -0
- package/built/target.js +1 -1
- package/built/targetlight.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/package.json +1 -1
package/built/pxt.js
CHANGED
|
@@ -117338,6 +117338,10 @@ var pxt;
|
|
|
117338
117338
|
(isControllerMode() && editorReadonly));
|
|
117339
117339
|
}
|
|
117340
117340
|
shell.isReadOnly = isReadOnly;
|
|
117341
|
+
function hideOrganizationLogos() {
|
|
117342
|
+
return /[?&]hidelogos=1/i.test(window.location.href);
|
|
117343
|
+
}
|
|
117344
|
+
shell.hideOrganizationLogos = hideOrganizationLogos;
|
|
117341
117345
|
function isNoProject() {
|
|
117342
117346
|
return noDefaultProject;
|
|
117343
117347
|
}
|
package/built/pxtlib.d.ts
CHANGED
|
@@ -2641,6 +2641,7 @@ declare namespace pxt.shell {
|
|
|
2641
2641
|
function isSandboxMode(): boolean;
|
|
2642
2642
|
function isTimeMachineEmbed(): boolean;
|
|
2643
2643
|
function isReadOnly(): boolean;
|
|
2644
|
+
function hideOrganizationLogos(): boolean;
|
|
2644
2645
|
function isNoProject(): boolean;
|
|
2645
2646
|
function isControllerMode(): boolean;
|
|
2646
2647
|
function getControllerMode(): ControllerMode;
|
package/built/pxtlib.js
CHANGED
|
@@ -19617,6 +19617,10 @@ var pxt;
|
|
|
19617
19617
|
(isControllerMode() && editorReadonly));
|
|
19618
19618
|
}
|
|
19619
19619
|
shell.isReadOnly = isReadOnly;
|
|
19620
|
+
function hideOrganizationLogos() {
|
|
19621
|
+
return /[?&]hidelogos=1/i.test(window.location.href);
|
|
19622
|
+
}
|
|
19623
|
+
shell.hideOrganizationLogos = hideOrganizationLogos;
|
|
19620
19624
|
function isNoProject() {
|
|
19621
19625
|
return noDefaultProject;
|
|
19622
19626
|
}
|