UNPKG

node-uglifier-es

Version:

Fully auto merging and uglifying a whole NodeJs project into one file with external files option. Recompiled from Zsolt Istvan Szabo's work with uglify-es instead of uglify-js-harmony.

29 lines 1.11 kB
<section data-ng-controller="ArticlesController"> <div class="page-header"> <h1>New Article</h1> </div> <div class="col-md-12"> <form name="articleForm" class="form-horizontal" data-ng-submit="create()" novalidate> <fieldset> <div class="form-group" ng-class="{ 'has-error': articleForm.title.$dirty && articleForm.title.$invalid }"> <label class="control-label" for="title">Title</label> <div class="controls"> <input name="title" type="text" data-ng-model="title" id="title" class="form-control" placeholder="Title" required> </div> </div> <div class="form-group"> <label class="control-label" for="content">Content</label> <div class="controls"> <textarea name="content" data-ng-model="content" id="content" class="form-control" cols="30" rows="10" placeholder="Content"></textarea> </div> </div> <div class="form-group"> <input type="submit" class="btn btn-default"> </div> <div data-ng-show="error" class="text-danger"> <strong data-ng-bind="error"></strong> </div> </fieldset> </form> </div> </section>