<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic There was an issue in node in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006552#M32334</link>
    <description>&lt;P&gt;There was an issue in node webkit with setting relative location using document.location.href a while back. That was fixed a long time ago. Recently we have updated nw, I'm not sure if what you are seeing is a side effect of that. Can you describe your issue little more? What you mean by&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px; font-style: italic;"&gt;value of "document.location.hash"&amp;nbsp;in the emulator became empty?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Can you post the snippet of the code that's having issue? Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jul 2015 22:31:59 GMT</pubDate>
    <dc:creator>Swati_S_Intel1</dc:creator>
    <dc:date>2015-07-10T22:31:59Z</dc:date>
    <item>
      <title>document.location.hash empty in emulator</title>
      <link>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006551#M32333</link>
      <description>&lt;P&gt;I used "document.location.hash" to pass parameter to dynamic created panels and it works fine in release 1995 (both in emulator and my Android pad Intel App Preview). However, I noticed that the value of "&lt;SPAN style="font-size: 13.0080003738403px; line-height: 15.609601020813px;"&gt;document.location.hash"&amp;nbsp;&lt;/SPAN&gt;in the emulator became empty and caused my code not working correctly after upgrade to release 2170. But the same code still works well when I used "Intel App Preview" in my Android pad to run the program. Is the emulator cancel the support of &amp;nbsp;"document.location.hash" or something wrong with it? Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 19:32:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006551#M32333</guid>
      <dc:creator>Elvis_J_</dc:creator>
      <dc:date>2015-07-10T19:32:24Z</dc:date>
    </item>
    <item>
      <title>There was an issue in node</title>
      <link>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006552#M32334</link>
      <description>&lt;P&gt;There was an issue in node webkit with setting relative location using document.location.href a while back. That was fixed a long time ago. Recently we have updated nw, I'm not sure if what you are seeing is a side effect of that. Can you describe your issue little more? What you mean by&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px; font-style: italic;"&gt;value of "document.location.hash"&amp;nbsp;in the emulator became empty?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Can you post the snippet of the code that's having issue? Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 22:31:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006552#M32334</guid>
      <dc:creator>Swati_S_Intel1</dc:creator>
      <dc:date>2015-07-10T22:31:59Z</dc:date>
    </item>
    <item>
      <title>Thank you for the prompt</title>
      <link>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006553#M32335</link>
      <description>&lt;P&gt;Thank you for the prompt reply. Here are my code to use document.location.hash value:&amp;nbsp;&lt;SPAN style="font-size: 13.0080003738403px; line-height: 15.609601020813px;"&gt;Actually, not only hash used in my code are empty (see line 5 in the image), all the hashes are empty string now. Thank you!&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;for (var i=0; i&amp;lt;venderArray.length; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var liHtml = '&amp;lt;li&amp;gt;&amp;lt;a href="#'+venderArray&lt;I&gt;._id+'/'+venderArray&lt;I&gt;.username+'"&amp;gt;';&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;liHtml += '&amp;lt;div &amp;nbsp;id="'+venderArray&lt;I&gt;.username+'" class="list-text"&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;liHtml += '&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$(".list").append(liHtml);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var panel_html = '&amp;lt;p&amp;gt;'+venderArray&lt;I&gt;.nickname+'&amp;lt;/p&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;panel_html += '&amp;lt;p&amp;gt;'+venderArray&lt;I&gt;.address+'&amp;lt;/p&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;panel_html += '&amp;lt;p&amp;gt;'+venderArray&lt;I&gt;.tel+'&amp;lt;/p&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;panel_html += '&amp;lt;ul class="list" id="menu_of_vender_list"&amp;gt; &amp;lt;/ul&amp;gt;';&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$.ui.addContentDiv(venderArray&lt;I&gt;._id, panel_html, "Vender Detail");&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$("#"+venderArray&lt;I&gt;._id).unbind("loadpanel");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;$("#"+venderArray&lt;I&gt;._id).bind("loadpanel",function(evt){&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var url=document.location.hash.replace("#"+evt.target.id+"/","");&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var params=url.split("/");&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;var tmpString = params.toString();&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;getMenuItem(tmpString);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;});&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;}&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;The snapshot in the debug window:&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;IMG alt="" src=" /file/468648/download" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 23:20:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/document-location-hash-empty-in-emulator/m-p/1006553#M32335</guid>
      <dc:creator>Elvis_J_</dc:creator>
      <dc:date>2015-07-10T23:20:44Z</dc:date>
    </item>
  </channel>
</rss>

