0.1.6 • Published 6 years ago

angularjs-json-object-editor v0.1.6

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

A JSON object editor for AngularJS

Module to edit Javascript Objects (AngularJS/ Angular 1)

Installation

npm i -S angularjs-json-object-editor

Usage

Include in your project

import { moduleName as objectEditor } from 'angularjs-json-object-editor';

Include styles (in your sass file)

@import 'angularjs-json-object-editor';

(or on your .js file)

import 'angularjs-json-object-editor/index.scss';

Add to the dependencies of your angular app

angular.module('myApp', [objectEditor]);

Use your directive

<object-editor object="$scope.myObject"></object-editor>