From f7f188ec450b6bdee7646d2c201b27923cc616a9 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Tue, 24 Nov 2009 17:20:14 -0700 Subject: [PATCH] fixed example to match recommendation --- .../compass/stylesheets/compass/css3/_font_face.sass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass b/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass index e516e812..7256dd01 100644 --- a/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass +++ b/lib/compass/frameworks/compass/stylesheets/compass/css3/_font_face.sass @@ -18,7 +18,7 @@ src: local('#{!name}'), #{!font_files} // EXAMPLE - +font-face("this name", font_files("this.otf", "opentype", "this.woff", "woff"), "fonts/this.eot", "thisname") + +font-face("this name", font_files("this.woff", "woff", "this.otf", "opentype"), "fonts/this.eot", "thisname") will generate: @@ -26,6 +26,6 @@ font-family: 'this name'; src: url('fonts/this.eot'); src: local('this name'), local('thisname'), - url('this.otf') format('opentype'), - url('this.woff') format('woff'); + url('this.otf') format('woff'), + url('this.woff') format('opentype'); }