Created
March 26, 2015 01:49
-
-
Save lukrizal/fa31f98899308bd1fc46 to your computer and use it in GitHub Desktop.
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
tpl = _.template($('#tpl-modal_select-product-first').html()) | |
opts = | |
autoResize: true | |
autoCenter: false | |
arrows: false | |
helpers: | |
overlay: {closeClick: false} | |
closeBtn: false | |
afterShow: ()-> | |
window.location.href = "#{BASE_URL}#{pex.REAL_INDEX_PATH}" | |
$.fancybox tpl({text:__.pleseSelectProductFirst}), opts |
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
@section('tpl-modal_select-product-first') | |
<div class="text"> | |
<h4><i class="fa fa-exclamation-triangle"></i> <%=text%></h4> | |
</div> | |
@stop | |
<script type="text/template" id="tpl-modal_select-product-first">@yield('tpl-modal_select-product-first')</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment