This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as appSettings from "application-settings"; | |
import { UnitTypes } from "./app-enums"; | |
import { DashboardWidgetInfo } from "./DashboardWidgetInfo.model"; | |
const serializableMetadataKey = Symbol("serializable"); | |
function serializable() { | |
return Reflect.metadata(serializableMetadataKey, true); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Install NativeScript CLI | |
echo "******** Install NativeScript CLI *************" | |
npm install -g nativescript | |
# NativeScript Ready | |
echo "******** NativeScript CLI Ready *************" | |
tns --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.right-toolbar-items, | |
.left-toolbar-items > span:nth-child(n+2), | |
.fa.fa-share-alt, | |
.widget-value .value-number { | |
display:none; | |
} | |
.header-page-tools { | |
visibility: hidden; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Page xmlns="http://www.nativescript.org/tns.xsd" loaded="pageLoaded"> | |
<StackLayout> | |
<TabView> | |
<TabView.items> | |
<TabViewItem title="Test 1"> | |
<TabViewItem.view> | |
<Label text="Test" /> | |
</TabViewItem.view> | |
</TabViewItem> | |
</TabView.items> |
Fixed
- Fixed #776:
tns livesync ios --emulator --watch
doesn't sync changes. - Fixed #777:
tns library add ios
does not build correct relative paths to referenced frameworks for mdgenerator. - Fixed #779: Command failed due to space in library reference path.
Cross Platform Modules Changelog
=IF(ISTEXT('Sheet1'!A1), "*", IF(ISBLANK('Sheet1'!A1),'Sheet1'!A1, IF('Sheet1'!A1 >= 10, IMAGE("https://docs.google.com/drawings/d/1zvwx-srTZlBYQgO1KNdx9-aB1Bw-GRXCfByBPmW0X_M/pub?w=120&h=90"), IF(AND('Sheet1'!A1 < 10,'Sheet1'!A1 >= 7.5), IMAGE("https://docs.google.com/drawings/d/1YlsedUl2v81KzJjGrmDu90f7Kvc-C4sMQ_EnM40Eei4/pub?w=120&h=90"), IF(AND('Sheet1'!A1 < 7.5,'Sheet1'!A1 >= 5), IMAGE("https://docs.google.com/drawings/d/1IFZiKmFa8zv_7XYxBkIrbJOb_QthS5aNP_VPs3sPbx4/pub?w=120&h=90"), IF(AND('Sheet1'!A1 < 5, 'Sheet1'!A1 >= 2.5),IMAGE("https://docs.google.com/drawings/d/1P0ZZ6bbx1xnhaIDKU34XY_rGzfZIcDbN-dycneMlZ1k/pub?w=120&h=90"),IF('Sheet1'!A1 < 2.5,IMAGE("https://docs.google.com/drawings/d/1gTEKIQuY29SB1HCrcDiT31D0ZsaWaUVMBW_ZW5sjGow/pub?w=120&h=90"),'Sheet1'!A1)))))))
NOTE: "Sheet1" should be replaced with whatever the target sheet name actually is in your Google Sheets document
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure we’re using the latest Homebrew | |
update | |
# Upgrade any already-installed formulae | |
upgrade | |
# Install Cask | |
install caskroom/cask/brew-cask | |
# Productivity tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Embedded somewhere in an HTML file--> | |
<div id="vidHolder"> | |
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" width="200" height="200"> | |
<param name="flashvars" value="file=YOUR-VIDEO.mp4" /> | |
<param name="movie" value="content/player.swf" /> | |
<embed src="content/player.swf" width="200" height="200" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=YOUR-VIDEO.mp4" /> | |
</object> | |
</div> |
NewerOlder