New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

textangular-uploadimage

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

textangular-uploadimage

textAngular plugin allows you to upload images

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

textAngular-uploadImage

This plugin allows adds possibility to upload images into textAngular Text-Editor/Wysiwyg.

After picking a file - it injects <img> tag with base64 right into the content. No actual file upload to a backend is required.

Installation

  • Latest release
  • Bower: bower install textAngular-uploadImage
  • NPM: npm install textAngular-uploadImage

Usage

// Add 'textAngular-uploadImage' module to your project.
var myApp = angular.module('myApp', ['textAngular-uploadImage']);

// Add 'uploadImage' to the toolbar.
myApp.config(function($provide) {
  $provide.decorator('taOptions', function($delegate) {
    $delegate.toolbar[1].push('uploadImage');
    return $delegate;
  });
});

Keywords

AngularJS

FAQs

Package last updated on 22 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts