JSFiddle - React, Tailwind, and code Playground

by imbolc

HTML

<form ng-app ng-submit="log()" ng-controller="MainCtrl">
    <span ng-bind="span">spanText</span>
    <input type="submit" value="log scope">
</form>

JavaScript

function MainCtrl ($scope) {
    $scope.log = function () {
        console.log($scope.span);
        $scope.span += 'x ';
    }
}