├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── config.js ├── demo ├── custom-app.html ├── demo-data.min.js ├── demo.js ├── index.html ├── pix │ ├── color_wheel.png │ ├── comics.png │ ├── comics │ │ ├── alim1.jpg │ │ ├── androitsheep1.jpeg │ │ ├── carmenmc1.jpeg │ │ ├── codemc1.jpeg │ │ ├── fleaudieux1.jpeg │ │ ├── garulfo1.jpeg │ │ ├── ghost-in-the-shell.jpeg │ │ ├── imperfect-future.jpeg │ │ ├── incal1.jpeg │ │ ├── lama1.jpeg │ │ ├── lanfeust1.jpeg │ │ ├── metabaron1.jpeg │ │ ├── neffous1.jpeg │ │ ├── pemaling1.jpeg │ │ ├── quete1.jpeg │ │ ├── regard1.jpeg │ │ ├── ronin.jpeg │ │ ├── saga1.jpeg │ │ ├── salammbo1.jpeg │ │ ├── shaolin-cowboy.jpeg │ │ ├── skydoll1.jpeg │ │ └── surfer.jpeg │ ├── contact.gif │ ├── cube.gif │ ├── flag_fr.gif │ ├── flag_us.gif │ ├── todo.gif │ ├── wine.gif │ └── wine │ │ ├── macrostie.gif │ │ ├── montelena.gif │ │ ├── stjean.gif │ │ ├── vinecliff.gif │ │ ├── wineno.gif │ │ ├── winered.gif │ │ ├── winerose.gif │ │ ├── winespark.gif │ │ ├── winesweet.gif │ │ ├── winewhite.gif │ │ └── yquem.gif └── test.html ├── dist ├── css │ ├── demo.css │ ├── dependencies.min.css │ ├── evolutility-ui-jquery.css │ └── evolutility-ui-jquery.min.css ├── dependencies.min.js ├── evolutility-ui-jquery.js ├── evolutility-ui-jquery.min.js └── fonts │ └── bootstrap │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── doc ├── controller.html ├── doc.js ├── icons │ ├── ft-bool.gif │ ├── ft-color.gif │ ├── ft-date.gif │ ├── ft-datehm.gif │ ├── ft-dec.gif │ ├── ft-doc.gif │ ├── ft-email.gif │ ├── ft-fn.gif │ ├── ft-hidden.png │ ├── ft-htm.gif │ ├── ft-img.gif │ ├── ft-int.gif │ ├── ft-json.png │ ├── ft-list.png │ ├── ft-lov.gif │ ├── ft-money.gif │ ├── ft-time.gif │ ├── ft-txt.gif │ ├── ft-txtml.gif │ └── ft-url.gif ├── index.html ├── screenshots │ ├── action-export.gif │ ├── action-filter.gif │ ├── many-bubbles.gif │ ├── many-cards.gif │ ├── many-charts.gif │ ├── many-list.gif │ ├── one-browse.gif │ ├── one-edit.gif │ ├── one-json.gif │ ├── one-mini.gif │ ├── position-100.gif │ ├── position-50.gif │ ├── position-address.gif │ ├── position-panels.gif │ ├── toolbar-many.gif │ └── toolbar-one.gif ├── ui-model.html └── views.html ├── favicon.png ├── index.html ├── js ├── dico │ ├── app.js │ ├── def.js │ ├── dico.js │ ├── dom-charts.js │ ├── dom.js │ └── format.js ├── i18n │ └── EN.js ├── view-action │ ├── action-export.js │ ├── action-filter.js │ ├── action-import.js │ └── toolbar.js ├── view-many │ ├── many-bubbles-d3.js │ ├── many-bubbles.js │ ├── many-cards.js │ ├── many-charts.js │ ├── many-list.js │ └── many.js └── view-one │ ├── one-browse.js │ ├── one-edit.js │ ├── one-json.js │ ├── one-mini.js │ ├── one-wizard.js │ └── one.js ├── models ├── comics.data.js ├── comics.js ├── contacts.data.js ├── contacts.js ├── test.data.js ├── test.js ├── todo.data.js ├── todo.js ├── winecellar.data.js └── winecellar.js ├── package.json └── sass ├── action-export.scss ├── action-filter.scss ├── action-import.scss ├── demo.scss ├── dependencies.scss ├── dico.scss ├── doc.scss ├── evolutility.scss ├── header.scss ├── many-bubbles.scss ├── many-cards.scss ├── many-charts.scss ├── many.scss ├── one-mini.scss ├── one-wizard.scss ├── one.scss ├── print.scss ├── toolbar.scss └── variables.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/config.js -------------------------------------------------------------------------------- /demo/custom-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/custom-app.html -------------------------------------------------------------------------------- /demo/demo-data.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/demo-data.min.js -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/demo.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/pix/color_wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/color_wheel.png -------------------------------------------------------------------------------- /demo/pix/comics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics.png -------------------------------------------------------------------------------- /demo/pix/comics/alim1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/alim1.jpg -------------------------------------------------------------------------------- /demo/pix/comics/androitsheep1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/androitsheep1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/carmenmc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/carmenmc1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/codemc1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/codemc1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/fleaudieux1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/fleaudieux1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/garulfo1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/garulfo1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/ghost-in-the-shell.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/ghost-in-the-shell.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/imperfect-future.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/imperfect-future.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/incal1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/incal1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/lama1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/lama1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/lanfeust1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/lanfeust1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/metabaron1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/metabaron1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/neffous1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/neffous1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/pemaling1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/pemaling1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/quete1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/quete1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/regard1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/regard1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/ronin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/ronin.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/saga1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/saga1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/salammbo1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/salammbo1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/shaolin-cowboy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/shaolin-cowboy.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/skydoll1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/skydoll1.jpeg -------------------------------------------------------------------------------- /demo/pix/comics/surfer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/comics/surfer.jpeg -------------------------------------------------------------------------------- /demo/pix/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/contact.gif -------------------------------------------------------------------------------- /demo/pix/cube.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/cube.gif -------------------------------------------------------------------------------- /demo/pix/flag_fr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/flag_fr.gif -------------------------------------------------------------------------------- /demo/pix/flag_us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/flag_us.gif -------------------------------------------------------------------------------- /demo/pix/todo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/todo.gif -------------------------------------------------------------------------------- /demo/pix/wine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine.gif -------------------------------------------------------------------------------- /demo/pix/wine/macrostie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/macrostie.gif -------------------------------------------------------------------------------- /demo/pix/wine/montelena.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/montelena.gif -------------------------------------------------------------------------------- /demo/pix/wine/stjean.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/stjean.gif -------------------------------------------------------------------------------- /demo/pix/wine/vinecliff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/vinecliff.gif -------------------------------------------------------------------------------- /demo/pix/wine/wineno.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/wineno.gif -------------------------------------------------------------------------------- /demo/pix/wine/winered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/winered.gif -------------------------------------------------------------------------------- /demo/pix/wine/winerose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/winerose.gif -------------------------------------------------------------------------------- /demo/pix/wine/winespark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/winespark.gif -------------------------------------------------------------------------------- /demo/pix/wine/winesweet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/winesweet.gif -------------------------------------------------------------------------------- /demo/pix/wine/winewhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/winewhite.gif -------------------------------------------------------------------------------- /demo/pix/wine/yquem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/pix/wine/yquem.gif -------------------------------------------------------------------------------- /demo/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/demo/test.html -------------------------------------------------------------------------------- /dist/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/css/demo.css -------------------------------------------------------------------------------- /dist/css/dependencies.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/css/dependencies.min.css -------------------------------------------------------------------------------- /dist/css/evolutility-ui-jquery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/css/evolutility-ui-jquery.css -------------------------------------------------------------------------------- /dist/css/evolutility-ui-jquery.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/css/evolutility-ui-jquery.min.css -------------------------------------------------------------------------------- /dist/dependencies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/dependencies.min.js -------------------------------------------------------------------------------- /dist/evolutility-ui-jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/evolutility-ui-jquery.js -------------------------------------------------------------------------------- /dist/evolutility-ui-jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/evolutility-ui-jquery.min.js -------------------------------------------------------------------------------- /dist/fonts/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/fonts/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/fonts/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/fonts/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/bootstrap/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/fonts/bootstrap/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/fonts/bootstrap/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/dist/fonts/bootstrap/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /doc/controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/controller.html -------------------------------------------------------------------------------- /doc/doc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/doc.js -------------------------------------------------------------------------------- /doc/icons/ft-bool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-bool.gif -------------------------------------------------------------------------------- /doc/icons/ft-color.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-color.gif -------------------------------------------------------------------------------- /doc/icons/ft-date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-date.gif -------------------------------------------------------------------------------- /doc/icons/ft-datehm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-datehm.gif -------------------------------------------------------------------------------- /doc/icons/ft-dec.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-dec.gif -------------------------------------------------------------------------------- /doc/icons/ft-doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-doc.gif -------------------------------------------------------------------------------- /doc/icons/ft-email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-email.gif -------------------------------------------------------------------------------- /doc/icons/ft-fn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-fn.gif -------------------------------------------------------------------------------- /doc/icons/ft-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-hidden.png -------------------------------------------------------------------------------- /doc/icons/ft-htm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-htm.gif -------------------------------------------------------------------------------- /doc/icons/ft-img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-img.gif -------------------------------------------------------------------------------- /doc/icons/ft-int.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-int.gif -------------------------------------------------------------------------------- /doc/icons/ft-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-json.png -------------------------------------------------------------------------------- /doc/icons/ft-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-list.png -------------------------------------------------------------------------------- /doc/icons/ft-lov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-lov.gif -------------------------------------------------------------------------------- /doc/icons/ft-money.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-money.gif -------------------------------------------------------------------------------- /doc/icons/ft-time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-time.gif -------------------------------------------------------------------------------- /doc/icons/ft-txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-txt.gif -------------------------------------------------------------------------------- /doc/icons/ft-txtml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-txtml.gif -------------------------------------------------------------------------------- /doc/icons/ft-url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/icons/ft-url.gif -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/screenshots/action-export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/action-export.gif -------------------------------------------------------------------------------- /doc/screenshots/action-filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/action-filter.gif -------------------------------------------------------------------------------- /doc/screenshots/many-bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/many-bubbles.gif -------------------------------------------------------------------------------- /doc/screenshots/many-cards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/many-cards.gif -------------------------------------------------------------------------------- /doc/screenshots/many-charts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/many-charts.gif -------------------------------------------------------------------------------- /doc/screenshots/many-list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/many-list.gif -------------------------------------------------------------------------------- /doc/screenshots/one-browse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/one-browse.gif -------------------------------------------------------------------------------- /doc/screenshots/one-edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/one-edit.gif -------------------------------------------------------------------------------- /doc/screenshots/one-json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/one-json.gif -------------------------------------------------------------------------------- /doc/screenshots/one-mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/one-mini.gif -------------------------------------------------------------------------------- /doc/screenshots/position-100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/position-100.gif -------------------------------------------------------------------------------- /doc/screenshots/position-50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/position-50.gif -------------------------------------------------------------------------------- /doc/screenshots/position-address.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/position-address.gif -------------------------------------------------------------------------------- /doc/screenshots/position-panels.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/position-panels.gif -------------------------------------------------------------------------------- /doc/screenshots/toolbar-many.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/toolbar-many.gif -------------------------------------------------------------------------------- /doc/screenshots/toolbar-one.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/screenshots/toolbar-one.gif -------------------------------------------------------------------------------- /doc/ui-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/ui-model.html -------------------------------------------------------------------------------- /doc/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/doc/views.html -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/favicon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/index.html -------------------------------------------------------------------------------- /js/dico/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/app.js -------------------------------------------------------------------------------- /js/dico/def.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/def.js -------------------------------------------------------------------------------- /js/dico/dico.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/dico.js -------------------------------------------------------------------------------- /js/dico/dom-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/dom-charts.js -------------------------------------------------------------------------------- /js/dico/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/dom.js -------------------------------------------------------------------------------- /js/dico/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/dico/format.js -------------------------------------------------------------------------------- /js/i18n/EN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/i18n/EN.js -------------------------------------------------------------------------------- /js/view-action/action-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-action/action-export.js -------------------------------------------------------------------------------- /js/view-action/action-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-action/action-filter.js -------------------------------------------------------------------------------- /js/view-action/action-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-action/action-import.js -------------------------------------------------------------------------------- /js/view-action/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-action/toolbar.js -------------------------------------------------------------------------------- /js/view-many/many-bubbles-d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many-bubbles-d3.js -------------------------------------------------------------------------------- /js/view-many/many-bubbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many-bubbles.js -------------------------------------------------------------------------------- /js/view-many/many-cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many-cards.js -------------------------------------------------------------------------------- /js/view-many/many-charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many-charts.js -------------------------------------------------------------------------------- /js/view-many/many-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many-list.js -------------------------------------------------------------------------------- /js/view-many/many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-many/many.js -------------------------------------------------------------------------------- /js/view-one/one-browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one-browse.js -------------------------------------------------------------------------------- /js/view-one/one-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one-edit.js -------------------------------------------------------------------------------- /js/view-one/one-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one-json.js -------------------------------------------------------------------------------- /js/view-one/one-mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one-mini.js -------------------------------------------------------------------------------- /js/view-one/one-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one-wizard.js -------------------------------------------------------------------------------- /js/view-one/one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/js/view-one/one.js -------------------------------------------------------------------------------- /models/comics.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/comics.data.js -------------------------------------------------------------------------------- /models/comics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/comics.js -------------------------------------------------------------------------------- /models/contacts.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/contacts.data.js -------------------------------------------------------------------------------- /models/contacts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/contacts.js -------------------------------------------------------------------------------- /models/test.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/test.data.js -------------------------------------------------------------------------------- /models/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/test.js -------------------------------------------------------------------------------- /models/todo.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/todo.data.js -------------------------------------------------------------------------------- /models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/todo.js -------------------------------------------------------------------------------- /models/winecellar.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/winecellar.data.js -------------------------------------------------------------------------------- /models/winecellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/models/winecellar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/package.json -------------------------------------------------------------------------------- /sass/action-export.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/action-export.scss -------------------------------------------------------------------------------- /sass/action-filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/action-filter.scss -------------------------------------------------------------------------------- /sass/action-import.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/action-import.scss -------------------------------------------------------------------------------- /sass/demo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/demo.scss -------------------------------------------------------------------------------- /sass/dependencies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/dependencies.scss -------------------------------------------------------------------------------- /sass/dico.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/dico.scss -------------------------------------------------------------------------------- /sass/doc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/doc.scss -------------------------------------------------------------------------------- /sass/evolutility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/evolutility.scss -------------------------------------------------------------------------------- /sass/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/header.scss -------------------------------------------------------------------------------- /sass/many-bubbles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/many-bubbles.scss -------------------------------------------------------------------------------- /sass/many-cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/many-cards.scss -------------------------------------------------------------------------------- /sass/many-charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/many-charts.scss -------------------------------------------------------------------------------- /sass/many.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/many.scss -------------------------------------------------------------------------------- /sass/one-mini.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/one-mini.scss -------------------------------------------------------------------------------- /sass/one-wizard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/one-wizard.scss -------------------------------------------------------------------------------- /sass/one.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/one.scss -------------------------------------------------------------------------------- /sass/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/print.scss -------------------------------------------------------------------------------- /sass/toolbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/toolbar.scss -------------------------------------------------------------------------------- /sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evoluteur/evolutility-ui-jquery/HEAD/sass/variables.scss --------------------------------------------------------------------------------