I can't get this simple Angular example to work in Firefox. Tried Ctrl+F5 but nothing. In Chrome works fine.
I set Javascript options to: Javascript -- AngularJS 1.2.1 -- No wrap-in
HTML:
<div ng-app="AppName">
<div ng-controller="OneController">
{{title}}
</div>
</div>
Javascript:
var myapp = angular.module('AppName', []);
myapp.controller('OneController', function ($scope) {
$scope.title = 'Just a text';
});