Sha256: a48469f786f4026dbda124a931fb19688c3d8de29e7aefcbf7e6bc65d6043b2b

Contents?: true

Size: 1001 Bytes

Versions: 6

Compression:

Stored size: 1001 Bytes

Contents

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>CompassAE Mobile</title>
    <%=include_sencha_touch :debug => true%>
    <%=static_javascript_include_tag('erp_app/utility.js')%>
    <%=static_javascript_include_tag('erp_app/mobile/mobile_base.js')%>
    <%#=setup_js_authentication(@user, @desktop)%>
    <%=create_authenticity_token_sencha_touch_field%>

    <!--stylesheets-->
    <%= static_stylesheet_link_tag('erp_app/mobile/mobile.css') %>
    <!--end stylesheets-->

    <script type="text/javascript">
    var mobileApplications = [];
    <%
    @mobile.applications.each do |application|
    %>
    mobileApplications.push({
      text:'<%=application.description%>',
      iconCls:'<%=application.icon%>',
      ui:'round',
      handler:function(){
        window.location = '<%=application.base_url%>'
      }
    });
    <%
    end
    %>
    </script>

    <%= static_javascript_include_tag("erp_app/mobile/app.js")%>
  </head>
  <body>
  </body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
erp_app-3.0.6 app/views/erp_app/mobile/base/index.erb
erp_app-3.0.5 app/views/erp_app/mobile/base/index.erb
erp_app-3.0.4 app/views/erp_app/mobile/base/index.erb
erp_app-3.0.3 app/views/erp_app/mobile/base/index.erb
erp_app-3.0.2 app/views/erp_app/mobile/base/index.erb
erp_app-3.0.1 app/views/erp_app/mobile/base/index.erb