davidbarna / syn-core

Base libs for syn modules: events, dom builders, helpers, translations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

syn-core

Base libs for syn modules: events, dom builders, helpers, translations...

Services

Messaging

MesssagingUiInterface is provided to allow any external lib to create and set global ui messaging service.

//my-ui-service.es
import core from 'syn-core'

class MyUiMessagingService extends core.messaging.ui.interface

  confirm () {
    window.alert(options.title)
  }
//index.es
import { Messaging } from 'syn-core'
import MyUiMessagingService from './my-ui-service'

Messaging.getInstance().setUIService(new MyUiMessagingService() )

About

Base libs for syn modules: events, dom builders, helpers, translations

License:GNU General Public License v3.0


Languages

Language:CoffeeScript 75.4%Language:JavaScript 24.6%