You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
When I was setting up a dialog like this everything worked fine in IE9, Chrome and FF but in IE7+8 i got an strange error just saying "[object Error]undefined " to the log.
$scope.openDialog = function () {
var d = $dialog.dialog($scope.opts);
d.open();
}
After trying to remove all code from CreateNewTripView and its controller i added just a H3 and it worked. BUT. When i added a linebreak before the h3 in crashed in ie7+8.
So if the first line in the template is a line break it will crash.
The text was updated successfully, but these errors were encountered:
@pkozlowski-opensource Correct. I've tested this issue before/after the fix on #339 and can confirm that this was the same culprit. IE7/8 seems to add a text-node for the new line.
When I was setting up a dialog like this everything worked fine in IE9, Chrome and FF but in IE7+8 i got an strange error just saying "[object Error]undefined " to the log.
This code is used:
$scope.opts = {
...
templateUrl: '/CreateNewTripView.html',
controller: 'TestDialogController'
};
}
After trying to remove all code from CreateNewTripView and its controller i added just a H3 and it worked. BUT. When i added a linebreak before the h3 in crashed in ie7+8.
So if the first line in the template is a line break it will crash.
The text was updated successfully, but these errors were encountered: