Uploaded image for project: 'CMS'
  1. CMS
  2. CMS-7481

JS / CSS grouping should be enhance between zones

    • Icon: Improvement Improvement
    • Resolution: Unresolved
    • Icon: Major Major
    • 4.LATER
    • None
    • None
    • None
    • 1 - Middle term
    • 2 - Normal

      If you have this

      <zone name="z1">
          <html>
              <head>
                  <script src="j1.js"/>
                  <script>Myinlinejs</script>
              </head>
          </html>
      </zone>
      <zone name="z2">
          <html>
              <head>
                  <script src="j2.js"/>
                  <script>Myinlinejs2</script>
              </head>
          </html>
      </zone>
      

      It is currently grouped as this

      <html>
          <head>
                  <script src="j1.js"/>
                  <script>Myinlinejs</script>
                  <script src="j2.js"/>
                  <script>Myinlinejs2</script>
          </head>
      </html>
      

      but it should be grouped as this, to make minimizer more efficient

      <html>
          <head>
                  <script src="j1.js"/>
                  <script src="j2.js"/>
                  <script>Myinlinejs</script>
                  <script>Myinlinejs2</script>
          </head>
      </html>
      

            Unassigned Unassigned
            raphael Raphaël Franchet
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: