Is it possible to integrate grapesjs into angularjs with a controller

1.6k Views Asked by At

JS

var app = angular.module('CompanyProfile', []);

app.controller('CompanyProfileCtrl', function() {

      function init() {

        var editor = grapesjs.init({
              allowScripts: 1,
              showOffsets: 1,
              autorender: 0,
              noticeOnUnload: 0,
              container: "#gjs",
              height: "700px",
              fromElement: true,
              clearOnRender: 0,
              storageManager: {
                autoload: 0
              },

HOW can i make this possible? BTW i did not submit the whole code. Assume that is all there. Will is work?

1

There are 1 best solutions below

2
On

If grapesjs has been loaded on the page it should be available the same way jQuery is. You can check your scripts tags for this in your main view (usually index.html). You can download it if you haven't already from here.