Giter VIP home page Giter VIP logo

Comments (5)

rsertelon avatar rsertelon commented on September 18, 2024

Same here! :)

from ui-ace.

douglasduteil avatar douglasduteil commented on September 18, 2024

Try to watch it !

myAppModule.controller('MyController', [ '$scope', function($scope) {

  var _editor; 
  $scope.$watch('foo',function(foo_instance){
    _editor = foo_instance;
  });

}]);

from ui-ace.

choxi avatar choxi commented on September 18, 2024

Thanks for the tip! I don't think that would work in my case because the callback would trigger every time the instance is changed, and in my case I just want to initialize the editor once. I added up adding this to ui-ace.js:

        // EVENTS
        session.on('change', onChange(opts.onChange));

        // Direct instance access
        if (attrs.scopeInstance && "" !== attrs.scopeInstance) {
          scope[attrs.scopeInstance] = acee;
        }

// I added this so you can hook in a
        // callback after the editor is initialized
        if (attrs.onLoad && "" !== attrs.onLoad) {
          scope[attrs.onLoad]()
        }

If that's an acceptable solution I could submit a pull request.

On Monday, July 22, 2013 at 2:36 AM, Douglas Duteil wrote:

Try to watch it !
myAppModule.controller('MyController', [ '$scope', function($scope) { var _editor; $scope.$watch('foo',function(foo_instance){ _editor = foo_instance; }); }]);


Reply to this email directly or view it on GitHub (#5 (comment)).

from ui-ace.

plasticparticle avatar plasticparticle commented on September 18, 2024

I have the same issue.

from ui-ace.

douglasduteil avatar douglasduteil commented on September 18, 2024

If that's an acceptable solution I could submit a pull request.

@choxi Sure go ahead. It's maybe easier to just add it as an event in the ace options.

<div ui-ace="{ onLoad : aceLoaded }" ></div>
[...]
// Direct instance access
if (angular.isFunction(opts.onLoad)) { opts.onLoad(acee); }
[...]

from ui-ace.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.