Skip to content

angular-redactor-filepicker 0.0.8

Install from the command line:
Learn more about npm packages
$ npm install @UseFedora/angular-redactor-filepicker@0.0.8
Install via package.json:
"@UseFedora/angular-redactor-filepicker": "0.0.8"

About this version

angular-redactor-filepicker

Fork of angular-redactor with filepicker support Angular Redactor is an angular directive for the Redactor editor. http://imperavi.com/redactor/

Important Changes

As of version 1.1.0, there is an additional file (angular-redactor-9.x) has been added to accommodate the the 9.x version of redactor, the angular-redactor.js will support the latest version of redactor.

Usage

  1. Include the redactor libraries from http://imperavi.com/redactor/ (The bower version of redactor is unsupported)
  2. In your angular application register angular-redactor as a dependency.
  3. Add the necessary html to view the editor.

Registration

// Angular Registration
angular.module("app", ["angular-redactor"]);

Bare Minimum Html

<textarea ng-model="content" redactor></textarea>

With Options

<textarea
  ng-model="content"
  redactor="{buttons: ['formatting', '|', 'bold', 'italic']}"
  cols="30"
  rows="10"
></textarea>

You can pass options directly to Redactor by specifying them as the value of the redactor attribute.

Global Options

angular.module("app", ["angular-redactor"]).config(function (redactorOptions) {
  redactorOptions.buttons = ["formatting", "|", "bold", "italic"];
});

Check out the demo folder where you can see a working example. https://github.com/TylerGarlick/angular-redactor/tree/master/demo

Bower Installation

bower install angular-redactor

File Upload Migration (2025)

As of June 2025, Redactor's file/image upload logic is overridden to use the new global FileUploader API. This enables seamless switching between Filestack and Uppy (feature-flagged), and ensures all uploads use a unified, migration-friendly event/response shape. The override is implemented in src/redactor-filepicker.js and falls back to legacy filepicker if the new API is unavailable.

Key points:

  • All Redactor file/image uploads now use window.FileUploader.pick if available.
  • Supports both legacy Filestack and new Uppy-based upload flows, controlled by feature flag.
  • No changes required for Redactor consumers; the override is transparent.
  • See # File Upload Architecture Migration.md for architectural details.

Details


Assets

  • angular-redactor-filepicker-0.0.8.tgz

Download activity

  • Total downloads 4,811
  • Last 30 days 1,171
  • Last week 199
  • Today 3

Recent versions

View all