Skip to content

Conversation

@er2es
Copy link

@er2es er2es commented Feb 25, 2016

continue button not always visible when all statments joined to grid,
because drag&drop event not setted the statments correctly

http://recordit.co/4AxuCn3XmH

continue button not always visible when all statments joined to grid,
because drag&drop event not setted the statments correctly

http://recordit.co/4AxuCn3XmH
@jfou
Copy link

jfou commented Apr 5, 2018

@er2es Thank you! I hate to mention it, but Firefox Quantum 59 (64bit) throws a console error with this change. Any ideas to address it?

Error: element.draggable is not a function

From the full angularJS.js (Had to do so to get better tracing; v1.2.32 was the closest I could get to the .min version originally provided). Error seems to be in line 10160 return logFn.apply(console, args); context is below:

// Note: reading logFn.apply throws an error in IE11 in IE8 document mode.
      // The reason behind this is that console.log has type "object" in IE8...
      try {
        hasApply = !!logFn.apply;
      } catch (e) {}

      if (hasApply) {
        return function() {
          var args = [];
          forEach(arguments, function(arg) {
            args.push(formatError(arg));
          });
          return logFn.apply(console, args);
        };
      }

EDIT: Adjusting load order seems to be have fixed this error, which may have been caused by me and not @er2es helpful change. Load order I'm using now is below, for reference:

    <script src="src/jquery.min.js" type="text/javascript"></script>
    <script src="src/jquery-ui.min.js" type="text/javascript"></script>
    <script src="src/jquery.ui.touch-punch.min.js" type="text/javascript"></script>
    <script src="src/jquery-dateFormat.min.js" type="text/javascript"></script>
    <script src="src/angularJS.js" type="text/javascript"></script>
    <script src="src/angular-ui-router.min.js" type="text/javascript"></script>
    <script src="src/bootstrap.min.js" type="text/javascript"></script>
    <script src="src/ui-bootstrap-custom-tpls.min.js" type="text/javascript"></script>
    <script src="src/xml2json.min.js" type="text/javascript"></script>
    <script src="src/jsonpath.js" type="text/javascript"></script>
    <script src="src/underscore-min.js" type="text/javascript"></script>
    <script src="src/htmlq.js" type="text/javascript"></script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants