fancy_syntax 0.0.7 copy "fancy_syntax: ^0.0.7" to clipboard
fancy_syntax: ^0.0.7 copied to clipboard

Dart 1 only

An expressive custom binding syntax for MDV templates

example/example.dart

// Copyright (c) 2013, the Dart project authors.  Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'dart:html';

import 'package:fancy_syntax/syntax.dart';
import 'package:mdv/mdv.dart' as mdv;

import 'person.dart';

main() {
  mdv.initialize();
  var john = new Person('John', 'Messerly', ['A', 'B', 'C']);
  var justin = new Person('Justin', 'Fagnani', ['D', 'E', 'F']);
  var globals = {
    'uppercase': (String v) => v.toUpperCase(),
    'people': [john, justin],
  };

  query('#test')
      ..bindingDelegate = new FancySyntax(globals: globals)
      ..model = john;

  query('#test2').model = john;
}
0
likes
20
pub points
0%
popularity

Publisher

unverified uploader

An expressive custom binding syntax for MDV templates

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

browser, mdv, observe

More

Packages that depend on fancy_syntax