JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="http://vitalets.github.io/angular-xeditable/dist/js/xeditable.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://vitalets.github.io/angular-xeditable/dist/css/xeditable.css">
<h4>Angular-xeditable Text (Bootstrap 3)</h4>

<div ng-app="app" ng-controller="Ctrl" class="container">
    <div class="row">
        <div class="col-xs-12">
            <input type="text" class="form-control" value="My full-width input" /> 
            <a href="#" editable-text="user.name">{{ user.name || 'empty' }}</a>
        </div>
    </div>
</div>

JavaScript

var app = angular.module("app", ["xeditable"]);

app.run(function (editableOptions) {
    editableOptions.theme = 'bs3';
});

app.controller('Ctrl', function ($scope) {
    $scope.user = {
        name: 'Click this, the input is not full-width.'
    };
});