xuijs / xui

A tiny javascript framework for mobile web apps.
http://xuijs.com
789 stars 106 forks source link

Resize event fires twice on Chrome (17.0.963.56) on Ubuntu #70

Closed alexblack closed 7 years ago

alexblack commented 12 years ago

Using this HTML: I see two alerts each time I resize the window, is this expected?

<html>
  <script type="text/javascript" src="http://xuijs.com/downloads/xui-2.3.2.min.js" />
  <script type="text/javascript">
  // <![CDATA[
    x$(window).on('resize', function() { 
      alert('resize');
    });
  // ]]>
  </script>

</html>