diff options
Diffstat (limited to 'docs/content/guide/expression.ngdoc')
| -rw-r--r-- | docs/content/guide/expression.ngdoc | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc index f1e2735b..99cc7514 100644 --- a/docs/content/guide/expression.ngdoc +++ b/docs/content/guide/expression.ngdoc @@ -110,6 +110,10 @@ prevent accidental access to the global state (a common source of subtle bugs).  </doc:source>  <doc:protractor>    it('should calculate expression in binding', function() { +    if (browser.params.browser = 'safari') { +      // Safari can't handle dialogs. +      return; +    };      element(by.css('[ng-click="greet()"]')).click();      var alertDialog = browser.switchTo().alert(); | 
