how-to-use-my-custom-responsive-tab.html
<div id="horizontalTab">
<ul class="resp-tabs-list">
<li>PREVIEW</li>
<li>HTML</li>
<li>CSS</li>
<li>JQUERY CODE</li>
<li>FILES Require</li>
<li>DOWNLOAD FILES</li>
</ul>
<div class="resp-tabs-container">
<div>
<iframe height="600px" width="100%" ng-src="{{names_}}"></iframe>
</div>
<div>
<pre>
<span class="codeIt">{{customerInfo.htmlContent}}</span>
</pre>
</div>
<div>
<pre>
<span class="codeIt">{{customerInfo.cssContent}}</span>
</pre>
</div>
<div>
<pre>
<span class="codeIt">{{customerInfo.jqueryContent}}</span>
</pre>
</div>
<div>
<pre>
<span class="codeIt">{{customerInfo.fileRequireContent}}</span>
</pre>
</div>
<div>6</div>
</div>
in That Error: scope.customerInfo is undefined. When i console scope i see customerInfo Object that scope Object. and When i console.log(scope.customerInfo) got undefined. So Please tell me Where i am wrong. Thanks in Advance.