| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 86f9d38 commit 4cd3a32
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,15 @@ | |||
| 1 | 1 | Cross Platform Modules Changelog | |
| 2 | 2 | ============================== | |
| 3 | 3 | ||
| 4 | + <a name="4.1.1"></a> | ||
| 5 | + # [4.1.1](https://github.com/NativeScript/NativeScript/compare/4.1.0...4.1.1) (2018-07-18) | ||
| 6 | + | ||
| 7 | + | ||
| 8 | + ### Bug Fixes | ||
| 9 | + | ||
| 10 | + * require devtools-elements.js with the extension mentioned explicitly ([#6079](https://github.com/NativeScript/NativeScript/issues/6079)) ([1a15aa2](https://github.com/NativeScript/NativeScript/commit/1a15aa2)) | ||
| 11 | + | ||
| 12 | + | ||
| 4 | 13 | <a name="4.1.0"></a> | |
| 5 | 14 | # [4.1.0](https://github.com/NativeScript/NativeScript/compare/4.0.1...4.1.0) (2018-05-28) | |
| 6 | 15 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -206,7 +206,7 @@ export function Deprecated(target: Object, key?: string | symbol, descriptor?: a | |||
| 206 | 206 | var originalMethod = descriptor.value; | |
| 207 | 207 | ||
| 208 | 208 | descriptor.value = function (...args: any[]) { | |
| 209 | - console.log(`${key} is deprecated`); | ||
| 209 | + console.log(`${key.toString()} is deprecated`); | ||
| 210 | 210 | ||
| 211 | 211 | return originalMethod.apply(this, args); | |
| 212 | 212 | } | |
@@ -225,7 +225,7 @@ export function Experimental(target: Object, key?: string | symbol, descriptor?: | |||
| 225 | 225 | var originalMethod = descriptor.value; | |
| 226 | 226 | ||
| 227 | 227 | descriptor.value = function (...args: any[]) { | |
| 228 | - console.log(`${key} is experimental`); | ||
| 228 | + console.log(`${key.toString()} is experimental`); | ||
| 229 | 229 | ||
| 230 | 230 | return originalMethod.apply(this, args); | |
| 231 | 231 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | { | |
| 2 | 2 | "name": "tns-core-modules", | |
| 3 | 3 | "description": "Telerik NativeScript Core Modules", | |
| 4 | - "version": "4.1.0", | ||
| 4 | + "version": "4.1.1", | ||
| 5 | 5 | "homepage": "https://www.nativescript.org", | |
| 6 | 6 | "repository": { | |
| 7 | 7 | "type": "git", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -42,7 +42,7 @@ let fragmentId = -1; | |||
| 42 | 42 | export let moduleLoaded: boolean; | |
| 43 | 43 | ||
| 44 | 44 | if (global && global.__inspector) { | |
| 45 | - const devtools = require("tns-core-modules/debugger/devtools-elements"); | ||
| 45 | + const devtools = require("tns-core-modules/debugger/devtools-elements.js"); | ||
| 46 | 46 | devtools.attachDOMInspectorEventCallbacks(global.__inspector); | |
| 47 | 47 | devtools.attachDOMInspectorCommandCallbacks(global.__inspector); | |
| 48 | 48 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments