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
"value": { | |
"Parbatipur, Rangpur Division": 1, | |
"Santiago de Cali, Valle del Cauca": 1, | |
"Dhaka, Dhaka Division": 25, | |
"Bishkek, Bishkek": 2, | |
"Narsingdi, Dhaka Division": 2, | |
"Gournadi, Dhaka Division": 2, | |
"Fort Lauderdale, Florida": 1, | |
"Isfahan, Isfahan Province": 1, | |
"Dinajpur, Rangpur Division": 3, |
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
using System.Web.Mvc; | |
namespace SerialTracker.Web.SiteMap | |
{ | |
public interface ISiteMapItem | |
{ | |
string GetAddress(UrlHelper Url, string siteAddress); | |
string ChangeFreq | |
{ |
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
<core-animated-pages fit selected="{{view}}"> | |
<section> | |
<core-list on-core-activate="{{selectView}}"> | |
<my-item></my-item> | |
</core-list> | |
</section> | |
<section> | |
<my-item-detail data="{{selectedItem}}"></my-item-detail> | |
</section> |
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
if ("registerElement" in document | |
&& "createShadowRoot" in HTMLElement.prototype | |
&& "import" in document.createElement("link") | |
&& "content" in document.createElement("template")) { | |
// We're using a browser with native WC support! | |
} else { | |
document.write('<script src="bower_components/webcomponentsjs/webcomponents.js"><\/script>'); | |
} |
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
<st-pageable-content id="pageableContent" | |
urltemplate="/Episodes/Page-{page}" appurltemplate="/serials/{page}" currentpage="{{currentPage}}" dataname="episode" | |
data="{{data}}" width="400" height="170" grid on-core-activate="{{selectView}}"> | |
<template> | |
<st-episode-tile data="{{model}}"></st-episode-tile> | |
</template> | |
</st-pageable-content> |
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
<polymer-element name="st-pageable-content" attributes="urlTemplate appUrlTemplate dataname currentPage" extends="core-list"> | |
<template> | |
<style> | |
:host { | |
display: block; | |
height: 100%; | |
} | |
</style> | |
<content></content> |