This file contains hidden or 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
| public class DataStoreItem: TableEntity | |
| { | |
| public string Value { get; set; } | |
| } |
This file contains hidden or 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
| { | |
| 'grouping': '', // Options: 'country', 'category' | |
| 'target': '_top' // Options: '_top', '_self' | |
| 'countryCode': '' // Only display jobs from a certain Country: Two-letter country codes defined in ISO 3166-1. eg 'US', 'IE', 'CA', | |
| 'category': // Only display jobs from a certain Category: 'tech', 'sales and marketing' | |
| } |
This file contains hidden or 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
| SearchBar { | |
| background-color: white; | |
| margin: 8; | |
| } | |
| GridLayout { | |
| margin: 7; | |
| } | |
| .wrapper { |
This file contains hidden or 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
| String.prototype.indexOfInsensitive = function (s, b) { | |
| return this.toLowerCase().indexOf(s.toLowerCase(), b); | |
| } |
This file contains hidden or 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
| var nbDigest = 0; | |
| $rootScope.$watch(function () { | |
| nbDigest++; | |
| console.log(nbDigest); | |
| }); |