Socket
Socket
Sign inDemoInstall

vue2-ace-editor

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue2-ace-editor - npm Package Compare versions

Comparing version 0.0.13 to 0.0.14

6

index.js

@@ -18,3 +18,3 @@ var ace = require('brace');

},
lang:String,
lang:true,
theme:String,

@@ -50,3 +50,3 @@ height:true,

lang:function (newLang) {
this.editor.getSession().setMode('ace/mode/'+newLang);
this.editor.getSession().setMode(typeof newLang === 'string' ? ( 'ace/mode/' + newLang ) : newLang);
},

@@ -84,3 +84,3 @@ options:function(newOption){

//editor.setOption("enableEmmet", true);
editor.getSession().setMode('ace/mode/'+lang);
editor.getSession().setMode(typeof lang === 'string' ? ( 'ace/mode/' + lang ) : lang);
editor.setTheme('ace/theme/'+theme);

@@ -87,0 +87,0 @@ editor.setValue(this.value,1);

{
"name": "vue2-ace-editor",
"version": "0.0.13",
"version": "0.0.14",
"description": "A Vue2.0's component based on ace/brace",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc